module.exports = { siteMetadata: { title: `Gatsby Default Starter` }, plugins: [ { resolve: `gatsby-source-filesystem`, options: { path: `${__dirname}/../docs/` } }, `gatsby-plugin-catch-links`, `gatsby-plugin-react-helmet`, `gatsby-plugin-glamor`, { resolve: `gatsby-plugin-typography`, options: { pathToConfigModule: `src/utils/typography.js` } }, { resolve: `gatsby-transformer-remark`, options: { plugins: [ { resolve: `gatsby-remark-prismjs`, options: { // Class prefix for
 tags containing syntax highlighting;
                            // defaults to 'language-' (eg 
).
                            // If your site loads Prism into the browser at runtime,
                            // (eg for use with libraries like react-live),
                            // you may use this to prevent Prism from re-processing syntax.
                            // This is an uncommon use-case though;
                            // If you're unsure, it's best to use the default value.
                            classPrefix: 'language-'
                        }
                    }
                ]
            }
        }
    ]
};