1.1.2 • Published 5 years ago
gatsby-source-potterapi v1.1.2
gatsby-source-potterapi
Source plugin for https://www.potterapi.com/. You can find an example in the example directory.
Install
npm install --save gatsby-source-potterapiHow to use
Prerequisites
Go to potterapi.com and create an account. Afterwards you can see your API key on your profile.
Save the API key in an environment file like:
POTTER_KEY=your-api-key-heregatsby-config
Add the plugin and define the API key.
module.exports = {
plugins: [
{
resolve: 'gatsby-source-potterapi',
options: {
key: process.env.POTTER_KEY,
}
}
]
}