@lucis/gatsby-transformer-pages-json
v0.2.1
Published
Gatsby transformer plugin to turn a pages.json file into pages and menu configurations.
Downloads
6
Readme
gatsby-transformer-pages-json
Transforms JSON objects into Page
and Menu
data to be used in gatsby-theme-lodge
WIP ALERT: I'm still building this architecture and it will change overtime. The page creation is stil being done in the theme side but we will probably overcome this issue.
Install
yarn add gatsby-transformer-json-key-value-to-array
How to use
In your gatsby-config.js
:
module.exports = {
plugins: [
`gatsby-transformer-pages-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./i/data/`,
},
},
],
}