@kamila-lab/component-loader
v0.0.1
Published
Loader for Kamila components
Downloads
2
Maintainers
Readme
gatsby-transformer-javascript-frontmatter
Parses Stories files to extract content.
Install
npm install --save-dev @kamila-lab/component-loader
How to use
To use this plugin you also need gatsby-source-filesystem installed and configured.
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./.stories/`
}
},
"@kamila-lab/component-loader"
]
};