forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
104 lines (102 loc) · 3.06 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
97
98
99
100
101
102
103
104
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 [
// Migrate builder guides to new "Build on Taiko" section
{
source: "/docs/guides/configure-your-wallet",
destination: "/docs/guides/build-on-taiko/setup-your-wallet",
permanent: true,
},
{
source: "/docs/guides/receive-tokens",
destination: "/docs/guides/build-on-taiko/receive-tokens",
permanent: true,
},
{
source: "/docs/guides/use-the-bridge",
destination: "/docs/guides/build-on-taiko/bridge-tokens",
permanent: true,
},
{
source: "/docs/guides/swap-tokens",
destination: "/docs/guides/build-on-taiko/swap-tokens",
permanent: true,
},
{
source: "/docs/guides/deploy-a-contract",
destination: "/docs/guides/build-on-taiko/deploy-a-contract",
permanent: true,
},
{
source: "/docs/guides/verify-a-contract",
destination: "/docs/guides/build-on-taiko/verify-a-contract",
permanent: true,
},
{
source: "/docs/guides/build-a-dapp",
destination: "/docs/guides/build-on-taiko/build-a-dapp",
permanent: true,
},
// Migrate node runner guides to new "Run a node" section
{
source: "/docs/guides/run-a-node",
destination: "/docs/guides/run-a-node/run-a-taiko-node",
permanent: true,
},
{
source: "/docs/guides/run-a-sepolia-node",
destination: "/docs/guides/run-a-node/run-a-sepolia-node",
permanent: true,
},
{
source: "/docs/guides/enable-a-proposer",
destination: "/docs/guides/run-a-node/enable-a-proposer",
permanent: true,
},
{
source: "/docs/guides/enable-a-prover",
destination: "/docs/guides/run-a-node/enable-a-prover",
permanent: true,
},
{
source: "/docs/guides/claim-prover-ttko",
destination: "/docs/guides/run-a-node/claim-prover-rewards",
permanent: true,
},
// 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,
},
];
},
});