-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathnext.config.mjs
More file actions
92 lines (86 loc) · 3.66 KB
/
next.config.mjs
File metadata and controls
92 lines (86 loc) · 3.66 KB
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
'use strict';
import createNextIntlPlugin from 'next-intl/plugin';
import { OPEN_NEXT_CLOUDFLARE } from './next.constants.cloudflare.mjs';
import { BASE_PATH, ENABLE_STATIC_EXPORT } from './next.constants.mjs';
import { getImagesConfig } from './next.image.config.mjs';
import { redirects, rewrites } from './next.rewrites.mjs';
const getDeploymentId = async () => {
if (OPEN_NEXT_CLOUDFLARE) {
// If we're building for the Cloudflare deployment we want to set
// an appropriate deploymentId (needed for skew protection)
const openNextAdapter = await import('@opennextjs/cloudflare');
return openNextAdapter.getDeploymentId();
}
return undefined;
};
/** @type {import('next').NextConfig} */
const nextConfig = {
// Full Support of React 18 SSR and Streaming
reactCompiler: true,
// We don't want to redirect with trailing slashes
skipTrailingSlashRedirect: true,
// We allow the BASE_PATH to be overridden in case that the Website
// is being built on a subdirectory (e.g. /nodejs-website)
basePath: BASE_PATH,
// Vercel/Next.js Image Optimization Settings
images: getImagesConfig(),
env: {
NEXT_PUBLIC_VERCEL_ENV:
process.env.NEXT_PUBLIC_VERCEL_ENV || process.env.VERCEL_ENV,
},
serverExternalPackages: ['twoslash'],
outputFileTracingIncludes: {
// Twoslash needs TypeScript declarations to function, and, by default, Next.js
// strips them for brevity. Therefore, they must be explicitly included.
'/*': [
'../../node_modules/.pnpm/typescript@*/node_modules/typescript/lib/*.d.ts',
'./node_modules/@types/node/**/*',
],
},
// On static export builds we want the output directory to be "build"
distDir: ENABLE_STATIC_EXPORT ? 'build' : undefined,
// On static export builds we want to enable the export feature
output: ENABLE_STATIC_EXPORT ? 'export' : undefined,
// This configures all the Next.js rewrites, which are used for rewriting internal URLs into other internal Endpoints
// This feature is not supported within static export builds, hence we pass an empty array if static exports are enabled
rewrites: ENABLE_STATIC_EXPORT ? undefined : rewrites,
// This configures all Next.js redirects
redirects: ENABLE_STATIC_EXPORT ? undefined : redirects,
// We don't want to run Type Checking on Production Builds
// as we already check it on the CI within each Pull Request
typescript: { ignoreBuildErrors: true },
// Enable statically typed links
// @see https://nextjs.org/docs/app/api-reference/config/typescript#statically-typed-links
typedRoutes: true,
// Experimental Flags
experimental: {
// Ensure that server-side code is also minified
serverMinification: true,
// Use Workers and Threads for webpack compilation
webpackBuildWorker: true,
// Execute parallel tracing of server builds
parallelServerBuildTraces: true,
// Execute parallel server compilation
parallelServerCompiles: true,
// A list of packages that Next.js should automatically evaluate and optimise the imports for.
// @see https://vercel.com/blog/how-we-optimized-package-imports-in-next-js
optimizePackageImports: [
'@radix-ui/react-accessible-icon',
'@radix-ui/react-dropdown-menu',
'@radix-ui/react-label',
'@radix-ui/react-select',
'@radix-ui/react-tabs',
'@radix-ui/react-tooltip',
'@radix-ui/react-avatar',
'@orama/highlight',
'@orama/react-components',
'tailwindcss',
'shiki',
],
// Faster Development Servers with Turbopack
turbopackFileSystemCacheForDev: true,
},
deploymentId: await getDeploymentId(),
};
const withNextIntl = createNextIntlPlugin('./i18n.tsx');
export default withNextIntl(nextConfig);