-
Notifications
You must be signed in to change notification settings - Fork 11
/
gatsby-config.js
184 lines (180 loc) · 5.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
const siteConfig = require('./site-config');
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
const getPlugins = () => {
let plugins = [
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-transformer-json',
{
resolve: 'gatsby-source-git',
options: {
name: 'people',
remote: `${siteConfig.profilesRepo}.git`,
// Optionally supply a branch. If none supplied, you'll get the default branch.
branch: 'main',
// Tailor which files get imported eg. import the docs folder from a codebase.
patterns: '*-*/**',
},
},
{
resolve: 'gatsby-source-git',
options: {
name: 'people',
remote: `${siteConfig.profilesRepo}.git`,
// Optionally supply a branch. If none supplied, you'll get the default branch.
branch: 'main',
// Tailor which files get imported eg. import the docs folder from a codebase.
patterns: 'badges/**',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'content',
path: `${__dirname}/content`,
},
},
'gatsby-plugin-postcss',
'gatsby-plugin-image',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: '@raae/gatsby-remark-oembed',
options: {
// usePrefix defaults to false
// usePrefix: true is the same as ["oembed"]
usePrefix: ['oembed', 'video'],
providers: {
// Important to exclude providers
// that adds js to the page.
// If you do not need them.
exclude: ['Reddit'],
},
},
},
{
resolve: 'gatsby-remark-figure-caption',
},
'gatsby-remark-relative-images', // must be before other image plugins
{
resolve: 'gatsby-remark-images',
options: {
// It's important to specify the maxWidth (in pixels) of
// the content container as this plugin uses this as the
// base for generating different widths of each image.
maxWidth: 590,
backgroundColor: 'transparent',
linkImagesToOriginal: false,
wrapperStyle: (fluidResult) =>
[
`width:${fluidResult.presentationWidth}px`,
`height:${fluidResult.presentationHeight}px`,
`aspect-ratio:${fluidResult.aspectRatio}`,
].join(';'),
},
},
'gatsby-remark-copy-linked-files',
{
resolve: 'gatsby-remark-custom-blocks',
options: {
blocks: {
imgBadge: {
classes: 'img-badge',
},
imgBanner: {
classes: 'img-banner',
},
imgLg: {
classes: 'img-large',
},
imgMd: {
classes: 'img-medium',
},
imgSm: {
classes: 'img-small',
},
imgLogo: {
classes: 'img-logo',
},
},
},
},
{
resolve: 'gatsby-remark-embed-video',
options: {
maxWidth: 800,
ratio: 1.77, // Optional: Defaults to 16/9 = 1.77
height: 400, // Optional: Overrides optional.ratio
related: false, //Optional: Will remove related videos from the end of an embedded YouTube video.
noIframeBorder: true, //Optional: Disable insertion of <style> border: 0
urlOverrides: [
{
id: 'youtube',
embedURL: (videoId) =>
`https://www.youtube-nocookie.com/embed/${videoId}`,
},
], //Optional: Override URL of a service provider, e.g to enable youtube-nocookie support
},
},
'gatsby-remark-responsive-iframe',
],
},
},
'gatsby-transformer-sharp',
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /images\/.*\.svg$/,
},
},
},
{
resolve: 'gatsby-plugin-breadcrumb',
options: {
useAutoGen: true,
autoGenHomeLabel: 'People',
useClassNames: true,
},
},
{
resolve: 'gatsby-plugin-google-tagmanager',
options: {
id: process.env.GOOGLE_GTM_ID, // id: GTM-NXDBVV
includeInDevelopment: true,
},
},
];
if (process.env.CHINA_BUILD && process.env.CHINA_BUILD === 'FALSE') {
plugins.push({
resolve: 'gatsby-plugin-google-gtag',
options: {
trackingIds: [
process.env.GOOGLE_ANALYTICS, // Tracking Id: UA-111111111-1
],
pluginConfig: {
head: true,
},
},
});
}
return plugins;
};
module.exports = {
flags: { PRESERVE_WEBPACK_CACHE: true },
pathPrefix: `${siteConfig.pathPrefix}${
process.env.CHINA_BUILD && process.env.CHINA_BUILD === 'TRUE' ? '-cn' : ''
}`,
siteMetadata: {
...siteConfig,
},
plugins: [
...getPlugins(),
'gatsby-plugin-client-side-redirect', // make sure to put last in the array
],
};