Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby

gatsby-source-storm

A Gatsby source plugin for the Storm CMS

🚀 Quick start

To get started, you can follow these steps:

  1. Install the plugin
npm i gatsby-source-storm
  1. Configure the plugin by adding it to the gatsby-config.js file
module.exports = {
  plugins: [
    {
        resolve: `gatsby-source-storm`,
        options: {
            host: process.env.REACT_APP_WEBAPI_URL,
            appkey: "Your app key"
        }
    },
  ],
}
© 2023 Gatsby, Inc.