Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

'GatherContent & Gatsby'

gatsby-source-gathercontent

Source plugin for pulling content into Gatsby from GatherContent.

Install

npm install gastby-source-gathercontent 

Configuration

We recommend using environment variables for your GatherContent configuration. You can learn more about using environment variables with Gatsby here.

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-gathercontent',
      options: {
        email: process.env.GATSBY_GC_EMAIL,
        apiKey: process.env.GATSBY_GC_API_KEY, // https://docs.gathercontent.com/reference#authentication 🔑
        projectId: process.env.GATSBY_GC_PROJECT_ID,
      }
    }
  ]
}

Learn more

© 2023 Gatsby, Inc.