We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d79ebb7 commit 1cf1dd8Copy full SHA for 1cf1dd8
1 file changed
apps/website/next.config.ts
@@ -7,6 +7,26 @@ const config: NextConfig = {
7
experimental: {
8
turbopackFileSystemCacheForDev: true,
9
},
10
+
11
+ redirects: async () => {
12
+ return [
13
+ {
14
+ source: "/docs/cjk-support",
15
+ destination: "/docs/plugins/cjk",
16
+ permanent: true,
17
+ },
18
19
+ source: "/docs/mermaid",
20
+ destination: "/docs/plugins/mermaid",
21
22
23
24
+ source: "/docs/mathematics",
25
+ destination: "/docs/plugins/math",
26
27
28
+ ];
29
30
};
31
32
export default withMDX(config);
0 commit comments