module.exports = {
siteMetadata: {
title: `Griffith`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/md`,
name: 'markdown-pages',
},
},
`gatsby-transformer-remark`,
`gatsby-plugin-react-helmet`,
],
pathPrefix: '/griffith',
}