37 lines
780 B
JavaScript
37 lines
780 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`],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: `Sol Journal`,
|
|
short_name: `Sol Journal`,
|
|
start_url: `/app`,
|
|
background_color: `#FFF`,
|
|
theme_color: `#FFF`,
|
|
display: `standalone`,
|
|
icon: `src/img/splash.png`,
|
|
},
|
|
},
|
|
],
|
|
}
|