1.0.1 • Published 5 years ago

gatsby-plugin-browser-dependencies v1.0.1

Weekly downloads
68
License
MIT
Repository
github
Last release
5 years ago

gatsby-plugin-browser-dependencies

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

Installation

yarn add gatsby-plugin-browser-dependencies

or

npm install --save gatsby-plugin-browser-dependencies

Usage

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