gatsby-source-collected-notes
v1.0.0
Published
Minimal plugin to get posts from Collected Notes API
Downloads
8
Readme
A source plugin for Collected Notes API.
🚀 Install
npm i gatsby-source-collected-notes
🎓 Use
Include the plugin on the gatsby.config.js
module.exports = {
/* Your site config here */
plugins: [
/* ... */
{
resolve: `gatsby-source-collected-notes`,
options: {
notesOwner: 'jenaro' // URL will look something like https://collectednotes.com/jenaro.json
}
}
/* ... */
],
}