Created
November 1, 2021 17:10
-
-
Save gdhardy1/720a5dfafce6facc41f4f5fc1c790175 to your computer and use it in GitHub Desktop.
Conditionally include a gatsby-plugin-gatsby-cloud.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Configure your Gatsby site with this file. | |
* | |
* See: https://www.gatsbyjs.com/docs/gatsby-config/ | |
*/ | |
module.exports = { | |
/* Your site config here */ | |
plugins: [ | |
process.env.GATSBY_CLOUD && "gatsby-plugin-gatsby-cloud", | |
].filter(Boolean), | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment