-
Notifications
You must be signed in to change notification settings - Fork 7
/
gatsby-config.js
76 lines (76 loc) · 2.07 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
68
69
70
71
72
73
74
75
76
module.exports = {
siteMetadata: {
title: `Gatsby Theme Replica - example`,
siteUrl: 'https://gatsby-theme-replica.vercel.app',
siteName: `Gatsby Theme Replica - example`,
description: 'Example site of using gatsby-theme-replica',
author: 'Author - Hiitea',
bio: 'This is bio',
location: 'Earth',
email: '[email protected]',
link: 'https://hiitea.io',
avatar:
'https://avatars2.githubusercontent.com/u/5300359?s=460&u=ad93a82d45a91c8f6e70ec438d788c7e873ef6b5&v=4',
status: {
emoji: '🍓',
text: 'I may be slow to respond',
isBusy: true,
},
gcse: '',
footerList: [
{
text: 'Home',
link: '/',
},
{
text: 'Github',
link: 'https://github.com/sabrinaluo',
},
{
text: 'Stack Overflow',
link: 'https://stackoverflow.com/users/3821392/sabrina-luo',
},
],
flagCounter: {
url: 'https://info.flagcounter.com/mx4Y',
image:
'//s01.flagcounter.com/count/mx4Y/bg_FFFFFF/txt_000000/border_FFFFFF/columns_3/maxflags_9/viewers_3/labels_0/pageviews_1/flags_0/percent_0/',
},
},
plugins: [
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
'UA-52574938-2', // Google Analytics / GA
],
// This object gets passed directly to the gtag config command
// This config will be shared across all trackingIds
gtagConfig: {
// optimize_id: "OPT_CONTAINER_ID",
anonymize_ip: true,
cookie_expires: 0,
},
// This object is used for configuration specific to this plugin
pluginConfig: {
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is also optional
respectDNT: true,
},
},
},
{
resolve: `gatsby-plugin-disqus`,
options: {
shortname: `hiitea-tech`,
},
},
{
resolve: 'gatsby-theme-replica',
options: {
contentPath: 'content',
},
},
],
};