forked from irsyadadl/justd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
43 lines (42 loc) · 986 Bytes
/
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
const isDev = process.argv.indexOf("dev") !== -1
const isBuild = process.argv.indexOf("build") !== -1
if (!process.env.VELITE_STARTED && (isDev || isBuild)) {
process.env.VELITE_STARTED = "1"
const { build } = await import("velite")
await build({ watch: isDev, clean: !isDev })
}
/** @type {import("next").NextConfig} */
export default {
devIndicators: {
buildActivity: false,
appIsrStatus: false,
},
experimental: {
reactCompiler: true,
optimizePackageImports: ["shiki"],
},
async rewrites() {
return [
{
source: "/docs/1.x/:slug*",
destination: process.env.NEXT_PUBLIC_APP_V1_URL + "/docs/1.x/:slug*",
}
]
},
async redirects() {
return [
{
source: "/docs/:slug*",
has: [
{
type: "header",
key: "x-no-redirect",
value: "true",
},
],
destination: "/docs/2.x/:slug*",
permanent: false,
},
]
},
}