Skip to content

Instantly share code, notes, and snippets.

@DSchau
Last active September 18, 2022 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DSchau/77bcd329b17162550c812965a22f138d to your computer and use it in GitHub Desktop.
Save DSchau/77bcd329b17162550c812965a22f138d to your computer and use it in GitHub Desktop.
Gatsby Configs
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'
}
}
]
}
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