Files
sol-journal/gatsby-config.js
Kyle Gill 4d90f29770 wip
2019-05-17 21:39:37 -06:00

25 lines
479 B
JavaScript

module.exports = {
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-offline`,
{
resolve: `gatsby-plugin-emotion`,
},
{
resolve: `gatsby-plugin-create-client-paths`,
options: { prefixes: [`/app/*`] },
},
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `Montserrat`,
variants: [`400`, `700`],
},
],
},
},
],
}