/** * Configure your Gatsby site with this file. * * See: https://www.gatsbyjs.com/docs/gatsby-config/ */ module.exports = { plugins: [ `gatsby-plugin-react-helmet`, { resolve: `gatsby-plugin-anchor-links`, options: { offset: -300, }, }, `gatsby-transformer-yaml`, `gatsby-plugin-emotion`, { resolve: `gatsby-source-filesystem`, options: { path: `${__dirname}/../docs/api/store`, }, }, ], }