module.exports = { siteMetadata: { title: 'Ocean Protocol Docs' }, plugins: [ { resolve: 'gatsby-source-filesystem', options: { name: 'images', path: `${__dirname}/src/images` } }, { resolve: 'gatsby-source-filesystem', options: { name: 'content', path: `${__dirname}/content` } }, 'gatsby-plugin-react-helmet', 'gatsby-transformer-sharp', 'gatsby-plugin-sharp' // 'gatsby-plugin-offline', ] }