@smarterlabs/gatsby-plugin-browser-dependencies
v1.0.2
Published
Excludes browser-only dependencies from your SSR builds in Gatsby.
Downloads
3
Maintainers
Readme
@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`,
]
},
},
],
}