You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
531 B
22 lines
531 B
module.exports = {
|
|
siteMetadata: {
|
|
title: 'Gatsby Default Starter',
|
|
},
|
|
plugins: [
|
|
'gatsby-plugin-react-helmet',
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: 'gatsby-starter-default',
|
|
short_name: 'starter',
|
|
start_url: '/',
|
|
background_color: '#663399',
|
|
theme_color: '#663399',
|
|
display: 'minimal-ui',
|
|
icon: 'src/images/gatsby-icon.png', // This path is relative to the root of the site.
|
|
},
|
|
},
|
|
'gatsby-plugin-offline',
|
|
],
|
|
}
|