Last active
September 18, 2022 22:04
-
-
Save DSchau/77bcd329b17162550c812965a22f138d to your computer and use it in GitHub Desktop.
Gatsby Configs
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
module.exports = { | |
siteMetadata: { | |
title: 'Drupal + Bayer Starter', | |
description: 'Official boilerplate for getting up and running with Drupal + Gatsby for the Bayer team' | |
}, | |
plugins: [ | |
{ | |
resolve: 'gatsby-source-drupal', | |
options: { | |
baseUrl: 'https://path-to-drupal.com' | |
} | |
} | |
] | |
} |
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
module.exports = { | |
siteMetadata: { | |
title: 'Contentstack + AKQA Starter', | |
description: 'Official boilerplate for getting up and running with Contentstack + Gatsby for the AKQA team' | |
}, | |
plugins: [ | |
{ | |
resolve: 'gatsby-source-contentstack', | |
options: { | |
api_key: process.env.CONTENTSTACK_API_KEY, | |
delivery_token: process.env.CONTENTSTACK_DELIVERY_TOKEN, | |
environment: process.env.CONTENTSTACK_ENVIRONMENT | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment