-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
52 lines (51 loc) · 1.44 KB
/
gatsby-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = {
siteMetadata: {
title: 'Garlicoin',
description:
"The new, friendly, decentralized cryptocurrency you've never heard of.",
keywords: 'cryptocurrency, garlicoin, blockchain, open source'
},
plugins: [
`gatsby-plugin-root-import`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
`gatsby-plugin-catch-links`,
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /assets/
}
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Garlicoin`,
short_name: `Garlicoin`,
start_url: `/`,
theme_color: `#f2c94c`,
background_color: `#ffffff`,
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
display: `standalone`,
icon: `static/favicon.png` // This path is relative to the root of the site.
}
},
`gatsby-plugin-offline`,
`gatsby-plugin-zopfli`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-131680351-1',
// Puts tracking script in the head instead of the body
head: false,
anonymize: true,
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: []
}
}
]
};
// pathPrefix: '/garlicoin-web-prod'