This commit is contained in:
Dennis
2019-05-07 10:49:36 +02:00
commit 743246102e
45 changed files with 5818 additions and 0 deletions

24
gatsby-config.js Normal file
View File

@@ -0,0 +1,24 @@
module.exports = {
siteMetadata: {
title: "Gatsby Starter - Strata by HTML5 UP",
author: "Hunter Chang",
description: "A Gatsby.js Starter based on Strata by HTML5 UP"
},
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/assets/images/website-icon.png', // This path is relative to the root of the site.
},
},
'gatsby-plugin-sass',
'gatsby-plugin-offline'
],
}