-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
43 lines (43 loc) · 989 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
40
41
42
43
module.exports = {
siteMetadata: {
siteUrl: "https://christiangaetano.com",
},
plugins: [
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: "./src/favicon.png",
injectHTML: true,
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
twitter: false,
yandex: false,
windows: false,
},
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-54367226-6",
respectDNT: true,
anonymize: true,
},
},
{ resolve: `gatsby-plugin-sitemap`, options: { exclude: ["/privacy"] } },
`gatsby-plugin-emotion`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-netlify`,
],
}