forked from pixie-io/docs.px.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
executable file
·185 lines (177 loc) · 4.8 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
185
/*
* Copyright 2018- The Pixie Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
const dotenv = require('dotenv');
const containers = require('remark-containers');
const config = require('./config');
if (!process.env.NETLIFY) {
dotenv.config();
}
let algoliaApiKey = process.env.ALGOLIA_DEV_API_KEY;
let algoliaIndex = process.env.GATSBY_ALGOLIA_DEV_INDEX_NAME;
switch (process.env.GATSBY_DEPLOY_ENV) {
case 'main':
algoliaApiKey = process.env.ALGOLIA_MAIN_API_KEY;
break;
case 'prod':
algoliaApiKey = process.env.ALGOLIA_PROD_API_KEY;
algoliaIndex = process.env.GATSBY_ALGOLIA_PROD_INDEX_NAME;
break;
default:
// Assume dev environment.
}
const algolia = {
// This plugin must be placed last in your list of plugins to ensure that it can query
// all the GraphQL data.
resolve: 'gatsby-plugin-algolia',
options: {
appId: process.env.GATSBY_ALGOLIA_APP_ID,
// Use Admin API key without GATSBY_ prefix, so that the key isn't exposed in the application.
// Tip: use Search API key with GATSBY_ prefix to access the service from within components.
apiKey: algoliaApiKey,
indexName: algoliaIndex, // for all queries
// eslint-disable-next-line global-require
queries: require('./src/utils/algolia-queries.ts').queries,
settings: {
// optional, any index settings
searchableAttributes: [
'value',
],
},
enablePartialUpdates: true,
matchFields: ['slug', 'modified'],
},
};
const plugins = [
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-material-ui',
},
'gatsby-plugin-styled-components',
{
resolve: 'gatsby-plugin-mdx',
options: {
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-relative-images',
},
{
resolve: require.resolve('./src/plugins/gatsby-plugin-code-tabs.ts'),
},
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1035,
showCaptions: true,
markdownCaptions: true,
},
},
{
resolve: 'gatsby-remark-copy-linked-files',
},
],
remarkPlugins: [containers],
extensions: ['.mdx', '.md'],
},
},
'gatsby-plugin-sharp',
'gatsby-plugin-emotion',
'gatsby-plugin-force-trailing-slashes',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-react-helmet-canonical-urls',
options: {
siteUrl: 'https://docs.px.dev',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'en',
path: `${__dirname}/content/`,
},
},
{
resolve: 'gatsby-plugin-gtag',
options: {
// your google analytics tracking id
trackingId: config.gatsby.gaTrackingId,
// Puts tracking script in the head instead of the body
head: true,
// enable ip anonymization
anonymize: false,
},
},
{
resolve: 'gatsby-plugin-typescript',
options: {
isTSX: true, // defaults to false
jsxPragma: 'jsx', // defaults to "React"
allExtensions: true, // defaults to false
},
},
{
resolve: 'gatsby-plugin-segment-js',
options: {
prodKey: process.env.SEGMENT_PRODUCTION_WRITE_KEY,
devKey: process.env.SEGMENT_DEV_WRITE_KEY,
trackPage: true,
},
},
{
resolve: 'gatsby-plugin-sass',
options: {
includePaths: ['node_modules', './src/scss'],
// eslint-disable-next-line global-require
implementation: require('sass'),
},
},
{
resolve: 'gatsby-plugin-google-fonts',
options: {
fonts: [
'roboto:300,400,400i,700',
'roboto+mono:300,400,400i,700',
],
display: 'block',
},
},
'@pauliescanlon/gatsby-mdx-embed',
'gatsby-plugin-remove-serviceworker',
{
resolve: 'gatsby-redirect-from',
options: {
query: 'allMdx',
},
},
'gatsby-plugin-meta-redirect',
];
if ('GATSBY_ALGOLIA_APP_ID' in process.env) {
plugins.push(algolia);
}
module.exports = {
pathPrefix: config.gatsby.pathPrefix,
siteMetadata: {
title: config.siteMetadata.title,
description: config.siteMetadata.description,
docsLocation: config.siteMetadata.docsLocation,
ogImage: config.siteMetadata.ogImage,
favicon: config.siteMetadata.favicon,
siteUrl: config.gatsby.siteUrl,
},
plugins,
};