-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathgatsby-config.js
39 lines (39 loc) · 990 Bytes
/
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
module.exports = {
siteMetadata: {
title: 'Ethereum Name Service',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-emotion`,
options: {
// Accepts all options defined by `babel-plugin-emotion` plugin.
},
},
`gatsby-plugin-react-next`,
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Overpass+Mono\:300,400"`,
`Overpass\:100,200,300,400,500,700,800,900`,
`Karma: 300,200,100`,
],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-101611202-2',
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: [],
},
},
],
}