32 lines
604 B
JavaScript
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`,
|
|
},
|
|
},
|
|
],
|
|
}
|