1.0.2 • Published 4 years ago

@smarterlabs/gatsby-plugin-browser-dependencies v1.0.2

Weekly downloads
63
License
MIT
Repository
github
Last release
4 years ago

@smarterlabs/gatsby-plugin-browser-dependencies

Excludes browser-only dependencies from your SSR builds in Gatsby.

Installation

yarn add @smarterlabs/gatsby-plugin-browser-dependencies

or

npm install --save @smarterlabs/gatsby-plugin-browser-dependencies

Usage

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `@smarterlabs/gatsby-plugin-browser-dependencies`,
      options: {
        dependencies: [
          `auth-js`,
          `browser-only-module`,
        ]
      },
    },
  ],
}