-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathgatsby-config.js
More file actions
24 lines (24 loc) · 674 Bytes
/
gatsby-config.js
File metadata and controls
24 lines (24 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = {
siteMetadata: {
title: "Gatsby Starter - Stellar by HTML5 UP",
author: "Hunter Chang",
description: "A Gatsby.js Starter based on Stellar 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'
],
}