-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
35 lines (34 loc) · 922 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
module.exports = {
siteMetadata: {
title: "Motasem's Personal Website",
author: "Motasem Halawani",
description: "Motasem Halawani Personal Website"
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
}
},
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en'
}
},
{
resolve: 'gatsby-plugin-gtag',
options: {
// your google analytics tracking id
trackingId: 'UA-139973494-1',
// Puts tracking script in the head instead of the body
head: false,
// enable ip anonymization
anonymize: true,
},
},
],
}