-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
107 lines (107 loc) · 2.46 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module.exports = {
siteMetadata: {
title: "Crewsby",
author: "Nicolas Megow",
siteUrl: `https://crewsby.com`,
description: "Activities for team building",
keywords: [
"culture",
"team building",
"agile",
"remote",
"teamwork",
"retro",
"transformation",
"psychologcial safety",
"new work",
],
siteUrl: "htts://crewsby.com",
},
plugins: [
"gatsby-plugin-theme-ui",
{
resolve: `gatsby-plugin-gdpr-cookies`,
options: {
googleAnalytics: {
trackingId: "UA-172124771-1",
// Setting this parameter is optional
anonymize: true,
},
facebookPixel: {
pixelId: "",
},
// Defines the environments where the tracking should be available - default is ["production"]
environments: ["production"],
},
},
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
{
resolve: `gatsby-plugin-sass`,
options: {
cssLoaderOptions: {
esModule: false,
modules: {
namedExport: false,
},
},
},
},
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
name: `Crewsby`,
short_name: `Crewsby`,
icon: "src/images/Crewsby_logo_512x512.png",
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#4285F4`,
display: `standalone`,
crossOrigin: `use-credentials`,
},
},
{
resolve: "gatsby-plugin-mailchimp",
options: {
endpoint:
"https://strategiepark.us12.list-manage.com/subscribe/post?u=6e95932404a064987d62d0666&id=66c5d513d8",
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /svg/,
},
},
},
"gatsby-plugin-mdx",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/src/images/`,
},
__key: "images",
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: `${__dirname}/src/pages/`,
},
__key: "pages",
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "team-building",
path: `${__dirname}/src/content/team-building`,
},
__key: "team-building",
},
],
};