-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathnext.config.mjs
531 lines (492 loc) · 14.1 KB
/
next.config.mjs
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
import bundleAnalyzer from '@next/bundle-analyzer'
import createMDX from '@next/mdx'
import mdxMetadata from '@polar-sh/mdx'
import { withSentryConfig } from '@sentry/nextjs'
import rehypeShikiFromHighlighter from '@shikijs/rehype/core'
import rehypeMdxImportMedia from 'rehype-mdx-import-media'
import rehypeSlug from 'rehype-slug'
import remarkFlexibleToc from 'remark-flexible-toc'
import remarkFrontmatter from 'remark-frontmatter'
import remarkGfm from 'remark-gfm'
import { bundledLanguages, createHighlighter } from 'shiki'
import { themeConfig, themesList, transformers } from './shiki.config.mjs'
const POLAR_AUTH_COOKIE_KEY =
process.env.POLAR_AUTH_COOKIE_KEY || 'polar_session'
const ENVIRONMENT =
process.env.VERCEL_ENV || process.env.NEXT_PUBLIC_VERCEL_ENV || 'development'
const CODESPACES = process.env.CODESPACES === 'true'
const defaultFrontendHostname = process.env.NEXT_PUBLIC_FRONTEND_BASE_URL
? new URL(process.env.NEXT_PUBLIC_FRONTEND_BASE_URL).hostname
: 'polar.sh'
const redirectDocs = (source, destination, permanent = false) => {
return [
{
source: `/docs${source}`,
destination: `/docs${destination}`,
permanent,
},
{
source: '/tools/:path*',
destination: '/developers/sdk/:path*',
has: [
{
type: 'host',
value: 'docs.polar.sh',
},
],
permanent,
},
]
}
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
transpilePackages: ['polarkit', 'shiki'],
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
// This is required to support PostHog trailing slash API requests
skipTrailingSlashRedirect: true,
// Since Codespaces run behind a proxy, we need to allow it for Server-Side Actions, like cache revalidation
// See: https://github.com/vercel/next.js/issues/58019
...(CODESPACES
? {
experimental: {
serverActions: {
allowedForwardedHosts: [
`${process.env.CODESPACE_NAME}-8080.${process.env.GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}`,
'localhost:8080',
'127.0.0.1:8080',
],
allowedOrigins: [
`${process.env.CODESPACE_NAME}-8080.${process.env.GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}`,
'localhost:8080',
'127.0.0.1:8080',
],
},
},
}
: {}),
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
port: '',
pathname: '**',
},
{
protocol: 'https',
hostname: '7vk6rcnylug0u6hg.public.blob.vercel-storage.com',
port: '',
pathname: '**',
},
],
},
async rewrites() {
return {
beforeFiles: [
// PostHog Rewrite
{
source: '/ingest/static/:path*',
destination: 'https://us-assets.i.posthog.com/static/:path*',
},
{
source: '/ingest/:path*',
destination: 'https://us.i.posthog.com/:path*',
},
// docs.polar.sh rewrite
{
// The rewrite happens before everything else, so we need to make sure
// it doesn't match the _next and assets directories
source: '/:path((?!_next|assets).*)',
has: [
{
type: 'host',
value: 'docs.polar.sh',
},
],
destination: '/docs/:path',
},
// polar.new rewrite
{
source: '/',
destination: '/new',
has: [
{
type: 'host',
value: 'polar.new',
},
],
},
],
}
},
async redirects() {
return [
// dashboard.polar.sh redirections
{
source: '/',
destination: '/login',
has: [
{
type: 'host',
value: 'dashboard.polar.sh',
},
],
permanent: false,
},
...(ENVIRONMENT === 'production'
? [
{
source: '/:client_secret(polar_cl_.*)',
destination:
'https://api.polar.sh/v1/checkout-links/:client_secret/redirect',
has: [
{
type: 'host',
value: 'buy.polar.sh',
},
],
permanent: false,
},
{
source: '/:id',
destination: 'https://polar.sh/api/checkout?price=:id*',
has: [
{
type: 'host',
value: 'buy.polar.sh',
},
],
permanent: false,
},
]
: []),
{
source: '/:path*',
destination: 'https://polar.sh/:path*',
has: [
{
type: 'host',
value: 'dashboard.polar.sh',
},
],
permanent: false,
},
// Feature pages
{
source: '/products',
destination: 'https://docs.polar.sh/products',
has: [
{
type: 'host',
value: 'polar.sh',
},
],
permanent: true,
},
{
source: '/issue-funding',
destination: 'https://docs.polar.sh/issue-funding',
has: [
{
type: 'host',
value: 'polar.sh',
},
],
permanent: true,
},
{
source: '/donations',
destination: 'https://docs.polar.sh/donations',
has: [
{
type: 'host',
value: 'polar.sh',
},
],
permanent: true,
},
...redirectDocs('/issue-funding/overview', '/issue-funding', true),
...redirectDocs('/guides/:path*', '/developers/guides/:path*', true),
...redirectDocs('/tools/:path*', '/developers/sdk/:path*', true),
...redirectDocs('/contribute', '/developers/open-source', true),
...redirectDocs('/sandbox', '/developers/sandbox', true),
...redirectDocs(
'/api/webhooks/:path*',
'/developers/webhooks/:path*',
true,
),
...redirectDocs('/api/sdk/:path*', '/developers/sdk/:path*', true),
// Redirect /docs/overview/:path to /docs/:path
...redirectDocs('/overview/:path*', '/:path*', true),
...redirectDocs('/subscriptions', '/products', true),
...redirectDocs('/support/faq', '/', true),
// Redirect old FAQ to docs.polar.sh
...(ENVIRONMENT === 'production'
? [
{
source: '/faq',
destination: 'https://docs.polar.sh/faq/overview',
has: [
{
type: 'host',
value: 'polar.sh',
},
],
permanent: true,
},
{
source: '/faq/:path*',
destination: 'https://docs.polar.sh/faq/:path*',
has: [
{
type: 'host',
value: 'polar.sh',
},
],
permanent: true,
},
]
: []),
// Logged-in user redirections
{
source: '/',
destination: '/start',
has: [
{
type: 'cookie',
key: POLAR_AUTH_COOKIE_KEY,
},
{
type: 'host',
value: defaultFrontendHostname,
},
],
missing: [
{
type: 'host',
value: 'polar.new',
},
],
permanent: false,
},
// Redirect polar.new/anything (but not "polar.new/") to "polar.new/"
{
source: '/(.+)',
destination: 'https://polar.new',
has: [
{
type: 'host',
value: 'polar.new',
},
],
permanent: false,
},
// Redirect /maintainer to polar.sh if on a different domain name
{
source: '/dashboard/:path*',
destination: `https://${defaultFrontendHostname}/dashboard/:path*`,
missing: [
{
type: 'host',
value: defaultFrontendHostname,
},
{
type: 'header',
key: 'x-forwarded-host',
value: defaultFrontendHostname,
},
],
permanent: false,
},
// Redirect /docs to docs.polar.sh
...(ENVIRONMENT === 'production'
? [
{
source: '/docs/:path*',
destination: 'https://docs.polar.sh/:path*',
permanent: false,
},
]
: []),
{
source: '/maintainer',
destination: '/dashboard',
permanent: true,
},
{
source: '/maintainer/:path(.*)',
destination: '/dashboard/:path(.*)',
permanent: true,
},
{
source: '/finance',
destination: '/finance/incoming',
permanent: false,
},
{
source: '/dashboard/:organization/overview',
destination: '/dashboard/:organization',
permanent: true,
},
{
source: '/dashboard/:organization/products/benefits',
destination: '/dashboard/:organization/benefits',
permanent: true,
},
{
source: '/dashboard/:organization/products/overview',
destination: '/dashboard/:organization/products',
permanent: true,
},
{
source: '/dashboard/:organization/issues',
destination: '/dashboard/:organization/issues/overview',
permanent: false,
},
{
source: '/dashboard/:organization/promote/issues',
destination: '/dashboard/:organization/issues/badge',
permanent: false,
},
{
source: '/dashboard/:organization/issues/promote',
destination: '/dashboard/:organization/issues/badge',
permanent: false,
},
{
source: '/dashboard/:organization/finance',
destination: '/dashboard/:organization/finance/incoming',
permanent: false,
},
// Access tokens redirect
{
source: '/settings/tokens',
destination: '/settings',
permanent: false,
},
// Old blog redirects
{
source: '/polarsource/posts',
destination: '/blog',
permanent: false,
},
{
source: '/polarsource/posts/:path(.*)',
destination: '/blog/:path*',
permanent: false,
},
// Fallback blog redirect
{
source: '/:path*',
destination: 'https://polar.sh/polarsource',
has: [
{
type: 'host',
value: 'blog.polar.sh',
},
],
permanent: false,
},
]
},
}
const createConfig = async () => {
const highlighter = await createHighlighter({
langs: Object.keys(bundledLanguages),
themes: themesList,
})
const withMDX = createMDX({
options: {
remarkPlugins: [
remarkFrontmatter,
// Automatically turns frontmatter into NextJS Metadata
// Also automatically generates an OpenGraph image URL
mdxMetadata(`${process.env.NEXT_PUBLIC_FRONTEND_BASE_URL}/docs/og`),
remarkGfm,
remarkFlexibleToc,
() => (tree, file) => ({
...tree,
children: [
// Wrap the main content of the MDX file in a BodyWrapper (div) component
// so we might position the TOC on the right side of the content
{
type: 'mdxJsxFlowElement',
name: 'BodyWrapper',
attributes: [],
children: tree.children,
},
// Automatically add a TOCGenerator component to the end of the MDX file
// using the TOC data from the remarkFlexibleToc plugin
{
type: 'mdxJsxFlowElement',
name: 'TOCGenerator',
attributes: [
{
type: 'mdxJsxAttribute',
name: 'items',
value: JSON.stringify(file.data.toc),
},
],
children: [],
},
],
}),
],
rehypePlugins: [
rehypeMdxImportMedia,
rehypeSlug,
[
rehypeShikiFromHighlighter,
highlighter,
{
themes: themeConfig,
transformers,
},
],
],
},
})
let conf = withMDX(nextConfig)
// Injected content via Sentry wizard below
conf = withSentryConfig(conf, {
// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options
org: 'polar-sh',
project: 'dashboard',
// Pass the auth token
authToken: process.env.SENTRY_AUTH_TOKEN,
// Only print logs for uploading source maps in CI
silent: !process.env.CI,
// For all available options, see:
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true,
reactComponentAnnotation: {
enabled: false,
},
// Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers.
// This can increase your server load as well as your hosting bill.
// Note: Check that the configured route will not match with your Next.js middleware, otherwise reporting of client-
// side errors will fail.
tunnelRoute: '/monitoring',
// Hides source maps from generated client bundles
hideSourceMaps: true,
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true,
// Enables automatic instrumentation of Vercel Cron Monitors. (Does not yet work with App Router route handlers.)
// See the following for more information:
// https://docs.sentry.io/product/crons/
// https://vercel.com/docs/cron-jobs
automaticVercelMonitors: true,
})
if (process.env.ANALYZE === 'true') {
const withBundleAnalyzer = bundleAnalyzer({
enabled: true,
})
conf = withBundleAnalyzer(conf)
}
return conf
}
export default createConfig