forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
56 lines (54 loc) · 1.51 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
import nextra from "nextra";
import remarkMdxDisableExplicitJsx from "remark-mdx-disable-explicit-jsx";
const withNextra = nextra({
defaultShowCopyCode: true,
latex: true,
theme: "nextra-theme-docs",
themeConfig: "./theme.config.tsx",
mdxOptions: {
remarkPlugins: [
[
remarkMdxDisableExplicitJsx,
{ whiteList: ["table", "thead", "tbody", "tr", "th", "td"] },
],
],
},
});
// NOTE: please document the redirects
export default withNextra({
async redirects() {
return [
// Introduce the concept of manuals
{
source: "/docs/resources/contributing",
destination: "/docs/manuals/contributing-manual",
permanent: true,
},
{
source: "/docs/resources/integration-guide",
destination: "/docs/manuals/integration-manual",
permanent: true,
},
// Migrate dependency on "TTKO" symbol for claiming rewards
{
source: "/docs/guides/run-a-node/claim-prover-ttko",
destination: "/docs/guides/run-a-node/claim-prover-rewards",
permanent: true,
},
// Add events page
{
source: "/events",
destination:
"https://taikoxyz.notion.site/Taiko-Events-calendar-be7f37a0d11849e5abfd0c332783dfc1",
permanent: false,
basePath: false,
},
// Redirect run a node to run a taiko node
{
source: "/docs/guides/run-a-node",
destination: "/docs/guides/run-a-taiko-node",
permanent: true,
},
];
},
});