-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnext.config.js
85 lines (80 loc) · 2.06 KB
/
next.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
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
const { i18n } = require("./next-i18next.config");
const getTags = require("./scripts/lib/tags");
module.exports = withBundleAnalyzer({
experimental: {
// concurrentFeatures: true,
// serverComponents: true,
largePageDataBytes: 5 * 1000 * 1000, // 5 MB
},
swcMinify: true,
reactStrictMode: true,
i18n,
async redirects() {
const { stable, beta } = await getTags();
const version = "\\d+\\.\\d+\\.\\d+\\.\\d+";
return [
{
source: "/docs{/}?",
destination: "/",
permanent: false,
},
{
source: `/{docs/}?:path((?:${version})\\/?(?:(?:${version})\\/?)?)`,
destination: "/?r=:path",
permanent: false,
},
// redirect long fast root links
{
source: "/docs/stable{/}?",
destination: `/?r=${stable.join("/")}`,
permanent: false,
},
{
source: "/docs/beta{/}?",
destination: `/?r=${beta.join("/")}`,
permanent: false,
},
// redirect to latest stable
{
source: `/(r|c|s)/MoLang`,
destination: `/docs/stable/Molang`,
permanent: false,
},
{
source: `/(r|c|s)/:file`,
destination: `/docs/stable/:file`,
permanent: false,
},
{
source: "/(r|c|s){/}?",
destination: `/?r=${stable.join("/")}`,
permanent: false,
},
// redirect to latest beta
{
source: `/b/MoLang`,
destination: `/docs/beta/Molang`,
permanent: false,
},
{
source: `/b/:file`,
destination: `/docs/beta/:file`,
permanent: false,
},
{
source: "/b{/}?",
destination: `/?r=${beta.join("/")}`,
permanent: false,
},
{
// match version numbers, old routing
source: `/:major(${version})/:minor(${version})/:file.:ext?`,
destination: `/docs/:major/:minor/:file`,
permanent: true,
},
];
},
});