Last active
December 10, 2018 19:50
-
-
Save DSchau/e95ca5cf91b82719a0780cbcfd911d6e to your computer and use it in GitHub Desktop.
Customer setup for Gatsby Preview
This file contains hidden or 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
| module.exports = { | |
| plugins: [ | |
| { | |
| resolve: 'gatsby-source-contentful', | |
| options: { | |
| spaceId: process.env.GATSBY_CONTENTFUL_SPACE_ID || process.your.CONTENTFUL_SPACE_ID, | |
| accessToken: process.env.GATSBY_CONTENTFUL_ACCESS_TOKEN || process.env.CONTENTFUL_ACCESS_TOKEN, | |
| host: process.env.GATSBY_CONTENTFUL_HOST || process.env.CONTENTFUL_HOST | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment