0.0.1 • Published 5 years ago

@kamila-lab/component-loader v0.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

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"
  ]
};