Skip to content

Commit

Permalink
chore(starters): Make theme_color optional (#33252)
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts authored Sep 20, 2021
1 parent 820e866 commit 06ed2a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion starters/blog/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ module.exports = {
short_name: `GatsbyJS`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#663399`,
// This will impact how browsers show your PWA/website
// https://css-tricks.com/meta-theme-color-and-trickery/
// theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
},
Expand Down
4 changes: 3 additions & 1 deletion starters/default/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ module.exports = {
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
// This will impact how browsers show your PWA/website
// https://css-tricks.com/meta-theme-color-and-trickery/
// theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
},
Expand Down

0 comments on commit 06ed2a0

Please sign in to comment.