Skip to content

Commit

Permalink
Upgrade gatsby-starter-default
Browse files Browse the repository at this point in the history
  • Loading branch information
gesposito committed Jul 12, 2020
1 parent 64d9474 commit dfb29a3
Show file tree
Hide file tree
Showing 4 changed files with 8,228 additions and 16,799 deletions.
47 changes: 37 additions & 10 deletions gatsby-config.js
Expand Up @@ -3,24 +3,51 @@ module.exports = {
title: 'DevDay Events',
},
plugins: [
'gatsby-plugin-react-helmet',
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'DevDay Events',
short_name: 'DevDay',
icon: 'src/images/android-chrome-192x192.png', // This path is relative to the root of the site.
theme_color: '#ffffff',
background_color: '#ffffff',
display: 'standalone',
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.
},
},
{
resolve: `gatsby-plugin-google-fonts`,
resolve: `gatsby-plugin-webfonts`,
options: {
fonts: [`montserrat`],
fonts: {
google: [
{
family: 'Montserrat',
// variants: ['300', '400', '500'],
// subsets: ['latin']
// text: 'Hello'
// fontDisplay: 'swap',
// strategy: 'selfHosted' // 'base64' || 'cdn'
},
],
},
//formats: ['woff2', 'woff'],
//useMinify: true,
//usePreload: true,
//usePreconnect: false,
},
},
'gatsby-plugin-offline',
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}

0 comments on commit dfb29a3

Please sign in to comment.