Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-wings

Install

npm install @wingsplatform/gatsby-plugin

Usage

In your gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: '@wingsplatform/gatsby-plugin',
      options: {
        appKey: process.env.WINGS_APP_KEY,
        project: process.env.WINGS_PROJECT,
        templates: {
          article: path.resolve('./src/components/Article.js'),
          event: path.resolve('./src/components/Event.js'),
          entry: path.resolve('./src/components/Entry.js'),
        },
      },
    },
  ];
};
© 2023 Gatsby, Inc.