UNPKG

@commercetools-docs/gatsby-theme-code-examples

Version:

Gatsby theme for commercetools documentation providing the functionalities to render Code Examples in MDX

16 lines (13 loc) 251 B
import path from 'path'; const config = { plugins: [ { resolve: `gatsby-source-filesystem`, options: { name: `codeExamples`, path: path.resolve('./src/code-examples'), }, }, ], }; export default config;