@prototyp/gatsby-plugin-gumball-debug
v1.0.7
Published
PROTOTYP's debug tool for Gumball CSS toolkit
Downloads
6
Readme
gatsby-config.js
const activeEnv =
process.env.GATSBY_ACTIVE_ENV || process.env.NODE_ENV || "development"
const isDev = activeEnv === "development"
module.exports = {
plugins: [
...(isDev
? [
{
resolve: "@prototyp/gatsby-plugin-gumball-debug",
options: {
debug: true,
},
},
]
: [])
],
}