Netlify announces the next evolution of Gatsby Cloud. Learn more
npm install gatsby-plugin-wings
In your gatsby-config.js:
gatsby-config.js
module.exports = { plugins: [ { resolve: 'gatsby-plugin-wings', options: { appSecret: process.env.WINGS_APP_SECRET, components: { article: path.resolve('./src/components/Article.js'), }, }, }, ]; };