forked from PostHog/posthog.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
415 lines (406 loc) · 16.3 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
const fetch = require(`node-fetch`)
const algoliaConfig = require('./gatsby/algoliaConfig')
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: 'PostHog',
titleTemplate: '%s',
description:
'Open-source product analytics built for developers. Automate the collection of every event on your website or app, without sending data to third-parties. Quickly deploy on your own infrastructure, with full access to the underlying data.',
url: 'https://posthog.com', // No trailing slash allowed!
image: '/banner.png', // Path to your image you placed in the 'static' folder
twitterUsername: '@PostHog',
siteUrl: 'https://posthog.com', // required by gatsby-plugin-sitemap
},
trailingSlash: 'never',
plugins: [
{
resolve: `gatsby-source-ashby`,
options: {
apiKey: process.env.ASHBY_API_KEY,
},
},
{
resolve: `gatsby-source-squeak`,
options: {
apiHost: process.env.GATSBY_SQUEAK_API_HOST,
organizationId: process.env.GATSBY_SQUEAK_ORG_ID,
},
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://posthog.us19.list-manage.com/subscribe/post?u=292207b434c26e77b45153b96&id=97194afa0a',
},
},
{
resolve: 'gatsby-plugin-breakpoints',
options: {
queries: {
xs: '(max-width: 390px)',
sm: '(max-width: 767px)',
md: '(max-width: 1023px)',
lg: '(max-width: 1279px)',
xl: '(max-width: 1535px)',
'2xl': '(max-width: 2560px)',
},
},
},
'gatsby-plugin-react-helmet',
`gatsby-plugin-sass`,
`gatsby-plugin-typescript`,
`gatsby-plugin-smoothscroll`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `contents`,
path: `${__dirname}/contents`,
},
},
{
resolve: 'gatsby-plugin-mdx',
options: {
shouldBlockNodeFromTransformation: (node) =>
node.internal.type === 'File' &&
node.url &&
node.url.includes('https://raw.githubusercontent.com/'),
extensions: ['.mdx', '.md'],
gatsbyRemarkPlugins: [
`gatsby-remark-static-images`,
{ resolve: 'gatsby-remark-autolink-headers', options: { icon: false } },
{
resolve: require.resolve(`./plugins/gatsby-remark-mermaid`),
},
],
plugins: [`gatsby-remark-static-images`],
},
},
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `menuItems`,
path: `${__dirname}/src/menuItems`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `sidebars`,
path: `${__dirname}/src/sidebars`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `navs`,
path: `${__dirname}/src/navs`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `authors`,
path: `${__dirname}/src/data/authors.json`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `testimonials`,
path: `${__dirname}/src/data/testimonials.json`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `authorImages`,
path: `${__dirname}/static/images/authors`,
},
},
{
resolve: `gatsby-source-strapi-pages`,
options: {
strapiURL: process.env.STRAPI_URL,
strapiKey: process.env.STRAPI_API_KEY,
},
},
`gatsby-plugin-image`,
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'gatsby-starter-markdown',
short_name: 'starter',
start_url: '/',
background_color: '#f96132',
theme_color: '#f96132',
display: 'minimal-ui',
icon: 'src/images/posthog-icon-white.svg', // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-copy-linked-files`,
options: {
destinationDir: `images`,
},
},
{
resolve: `gatsby-remark-katex`,
options: {
throwOnError: false,
},
},
{
resolve: `gatsby-remark-autolink-headers`,
options: {
className: 'post-toc-anchor',
},
},
'gatsby-remark-static-images',
{
resolve: './plugins/gasby-remark-lazy-imgix',
options: {
imgixHost: process.env.CONTEXT === 'production' ? 'posthog.imgix.net' : null,
maxWidth: 700,
},
},
{
resolve: `gatsby-remark-prismjs`,
options: {
// Class prefix for <pre> tags containing syntax highlighting;
// defaults to 'language-' (e.g. <pre class="language-js">).
// If your site loads Prism into the browser at runtime,
// (e.g. for use with libraries like react-live),
// you may use this to prevent Prism from re-processing syntax.
// This is an uncommon use-case though;
// If you're unsure, it's best to use the default value.
classPrefix: 'language-',
// This is used to allow setting a language for inline code
// (i.e. single backticks) by creating a separator.
// This separator is a string and will do no white-space
// stripping.
// A suggested value for English speakers is the non-ascii
// character '›'.
inlineCodeMarker: null,
// This lets you set up language aliases. For example,
// setting this to '{ sh: "bash" }' will let you use
// the language "sh" which will highlight using the
// bash highlighter.
aliases: {},
// This toggles the display of line numbers globally alongside the code.
// To use it, add the following line in gatsby-browser.js
// right after importing the prism color scheme:
// require("prismjs/plugins/line-numbers/prism-line-numbers.css")
// Defaults to false.
// If you wish to only show line numbers on certain code blocks,
// leave false and use the {numberLines: true} syntax below
showLineNumbers: false,
// If setting this to true, the parser won't handle and highlight inline
// code used in markdown i.e. single backtick code like `this`.
noInlineHighlight: true,
// Customize the prompt used in shell output
// Values below are default
prompt: {
user: 'root',
host: 'localhost',
global: false,
},
escapeEntities: {},
},
},
`gatsby-remark-mermaid`,
],
},
},
`gatsby-plugin-postcss`,
{
resolve: `gatsby-plugin-sitemap`,
options: {
excludes: [],
createLinkInHead: true,
query: `
{
site {
siteMetadata {
siteUrl
}
}
allSitePage {
nodes {
path
}
}
}`,
resolveSiteUrl: ({ site }) => {
return site.siteMetadata.siteUrl
},
resolvePages: async ({ allSitePage: { nodes: allPages }, site }) => {
const transformedPages = allPages.map(({ path }) => {
return {
path: `${site.siteMetadata.siteUrl}${path}`,
}
})
let plugins = []
try {
const pluginsResponse = await fetch(
'https://raw.githubusercontent.com/PostHog/plugin-repository/main/repository.json'
)
plugins = await pluginsResponse.json()
} catch (e) {
console.log(e)
}
plugins = plugins.map((plugin) => ({
path: `${site.siteMetadata.siteUrl}/plugins/` + plugin.name.toLowerCase().replace(/ /g, '-'),
}))
return [...transformedPages, ...plugins]
},
serialize: async ({ path }) => {
let changefreq = 'monthly'
let priority = 0.7
if (path === '/') {
priority = 1.0
changefreq = 'monthly'
} else if (path.includes('blog')) {
if (path === '/blog') {
changefreq = 'weekly'
} else {
changefreq = 'yearly'
}
} else if (path.includes('product')) {
priority = 0.8
} else if (path.includes('docs')) {
priority = 0.9
} else if (path.includes('handbook')) {
priority = 0.6
} else if (path.includes('pricing')) {
priority = 0.8
} else if (path.includes('plugins')) {
priority = 0.8
changefreq = 'daily'
}
return {
url: path,
changefreq: changefreq,
priority: priority,
}
},
},
},
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /svgs/,
},
},
},
{
resolve: `gatsby-plugin-feed`,
options: {
setup: (options) => ({
...options,
custom_namespaces: {
blog: 'https://posthog.com/blog',
},
}),
query: `
{
site {
siteMetadata {
title
description
siteUrl
}
}
}
`,
feeds: [
{
serialize: ({ query: { site, allMdx } }) => {
let {
siteMetadata: { siteUrl },
} = site
let allMdxs = allMdx.edges.map((edge) => {
let { node } = edge
let { frontmatter, excerpt, slug, id, body } = node
let { date, title, authors, featuredImage } = frontmatter
return {
description: excerpt,
date,
title,
url: `${siteUrl}/${slug}`,
guid: id,
author: authors && authors[0].name,
custom_elements: [{ 'content:encoded': body }],
enclosure: {
url: featuredImage ? `${siteUrl}${featuredImage.publicURL}` : null,
},
}
})
return allMdxs
},
query: `
{
allMdx(
sort: { order: DESC, fields: [frontmatter___date] }
filter: { frontmatter: { rootPage: { eq: "/blog" } } }
) {
edges {
node {
id
slug
body
excerpt(pruneLength: 150)
frontmatter {
date(formatString: "MMMM DD, YYYY")
title
featuredImage {
publicURL
}
authors: authorData {
handle
name
role
link_type
link_url
}
}
}
}
}
}
`,
output: '/rss.xml',
title: "PostHog's RSS Feed",
// optional configuration to insert feed reference in pages:
// if `string` is used, it will be used to create RegExp and then test if pathname of
// current page satisfied this regular expression;
// if not provided or `undefined`, all pages will have feed reference inserted
match: '^/blog/',
// optional configuration to specify external rss feed, such as feedburner
link: 'https://posthog.com/blog',
},
],
},
},
...(!process.env.GATSBY_ALGOLIA_APP_ID || !process.env.ALGOLIA_API_KEY || !process.env.GATSBY_ALGOLIA_INDEX_NAME
? []
: [algoliaConfig]),
],
}