gatsby-source-storm
v0.4.1
Published
Gatsby source plugin for retrieving data from the Storm CMS
Downloads
126
Readme
A Gatsby source plugin for the Storm CMS
🚀 Quick start
To get started, you can follow these steps:
- Install the plugin
npm i gatsby-source-storm
- 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"
}
},
],
}