Skip to content

Instantly share code, notes, and snippets.

@gdhardy1
Created November 1, 2021 17:10
Show Gist options
  • Save gdhardy1/720a5dfafce6facc41f4f5fc1c790175 to your computer and use it in GitHub Desktop.
Save gdhardy1/720a5dfafce6facc41f4f5fc1c790175 to your computer and use it in GitHub Desktop.
Conditionally include a gatsby-plugin-gatsby-cloud.js
/**
* 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