Files
medusa-store/www/gatsby-config.js
Sebastian Rindom 1e5a1398d8 hotfix: docs build (#198)
* fix: build

* fix: build

* fix: build

* fix: build
2021-03-10 16:15:06 +01:00

32 lines
604 B
JavaScript

/**
* 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-json`,
`gatsby-plugin-emotion`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/../docs/api/store`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/../docs/api`,
},
},
],
}