-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
67 lines (67 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module.exports = {
siteMetadata: {
title: 'The WebDev Coach',
name: 'The WebDev Coach',
siteUrl: 'https://www.thewebdevcoach.com/',
description: 'Learn web development with The WebDev Coach.',
hero: {
heading: 'Random ramblings about learning web development.',
maxWidth: 652,
},
social: [
{
name: `twitter`,
url: `https://twitter.com/aryanjabbari`,
},
{
name: `youtube`,
url: `https://www.youtube.com/c/thewebdevcoach`,
},
{
name: `devto`,
url: `https://dev.to/aryanjnyc`,
},
{
name: `github`,
url: `https://github.com/AryanJ-NYC`,
},
{
name: `linkedin`,
url: `https://www.linkedin.com/in/aryanjabbari`,
},
{
name: `instagram`,
url: `https://www.instagram.com/thewebdevcoach/`,
},
],
},
plugins: [
{
resolve: '@narative/gatsby-theme-novela',
options: {
mailchimp: true,
sources: { local: true },
},
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://gmail.us3.list-manage.com/subscribe/post?u=7d1500e47fd7aa0bd674cab1e&id=85ef56880a',
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-128084522-1',
// 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,
siteSpeedSampleRate: 10,
},
},
'gatsby-plugin-netlify', // make sure to keep it last in the array
],
};