-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-config.js
32 lines (31 loc) · 992 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
module.exports = {
plugins: [
'gatsby-plugin-sass',
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-45997711-10",
// 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: ["/preview/**", "/do-not-track/me/too/"],
},
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Libre+Baskerville:400,700']
},
typekit: {
id: 'szu8fhq'
},
},
},
],
}