11module . exports = {
22 siteMetadata : {
3- title : 'Gatsby Default Starter' ,
3+ title : 'Gatsby Default Starter' ,
44 } ,
55 plugins : [
6- 'gatsby-plugin-react-helmet' ,
7- {
8- resolve : `gatsby-plugin-manifest` ,
9- options : {
10- name : 'gatsby-starter-default' ,
11- short_name : 'starter' ,
12- start_url : '/' ,
13- background_color : '#663399' ,
14- theme_color : '#663399' ,
15- display : 'minimal-ui' ,
16- icon : 'src/images/gatsby-icon.png' , // This path is relative to the root of the site.
6+ 'gatsby-plugin-react-helmet' ,
7+ {
8+ resolve : 'gatsby-plugin-manifest' ,
9+ options : {
10+ name : 'gatsby-starter-default' ,
11+ short_name : 'starter' ,
12+ start_url : '/' ,
13+ background_color : '#663399' ,
14+ theme_color : '#663399' ,
15+ display : 'minimal-ui' ,
16+ icon : 'src/images/gatsby-icon.png' , // This path is relative to the root of the site.
17+ } ,
1718 } ,
18- } ,
19- 'gatsby-plugin-offline' ,
20- {
21- resolve : 'gatsby-plugin-mailchimp' ,
22- options : {
23- endpoint : '' , // replace with your own Mailchimp endpoint for testing
19+ 'gatsby-plugin-offline' ,
20+ {
21+ resolve : 'gatsby-plugin-mailchimp' ,
22+ options : {
23+ endpoint : '' , // replace with your own Mailchimp endpoint for testing
24+ } ,
2425 } ,
25- } ,
2626 ] ,
27- }
28-
27+ } ;
0 commit comments