-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
96 lines (95 loc) · 2.46 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
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
async redirects() {
return [
{
source: "/advanced/",
destination: "/",
permanent: false,
},
{
source: "/advanced/index.html",
destination: "/",
permanent: false,
},
{
source: "/advanced/status.html",
destination: "/status.html",
permanent: false,
},
/*
{
source: '/advanced/javascript/',
destination: '/support/javascript.html',
permanent: false,
},
{
source: '/advanced/javascript/index.html',
destination: '/support/javascript.html',
permanent: false,
},
*/
{
source: "/simple/previous.html",
destination: "/advanced/java/index.html",
permanent: false,
},
{
source: "/support/",
destination: "/support/index.html",
permanent: false,
},
{
source: "/support/api.html",
destination:
"https://github.com/regexplanet/regexplanet-next/blob/main/CONTRIBUTING.md#backend-api",
permanent: false,
},
{
source: "/support/credits.html",
destination:
"https://github.com/regexplanet/regexplanet-next/tree/main?tab=readme-ov-file#credits",
permanent: false,
},
{
source: "/support/engines.html",
destination: "/status.html",
permanent: false,
},
{
source: "/support/history.html",
destination:
"https://github.com/regexplanet/regexplanet-next/blob/main/CHANGELOG.md",
permanent: false,
},
{
source: "/support/license.html",
destination:
"https://github.com/regexplanet/regexplanet-next/blob/main/LICENSE.txt",
permanent: false,
},
{
source: "/support/privacy.html",
destination: "/legal/privacy.html",
permanent: false,
},
{
source: "/support/terms.html",
destination: "/legal/terms.html",
permanent: false,
},
{
source: "/support/todo.html",
destination:
"https://github.com/regexplanet/regexplanet-next/blob/main/TODO.md",
permanent: false,
},
/* did not work: {
source: '/advanced/:slug/',
destination: '/advanced/:slug/index.html',
permanent: false,
}, */
];
},};
export default nextConfig;