-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathserve.json
49 lines (49 loc) · 1.63 KB
/
serve.json
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
{
"rewrites": [
{
"source": "/packages/:name",
"destination": "/packages/[name].html"
},
{
"source": "/packages/:name/:tag/:variant",
"destination": "/packages/[name]/[tag]/[variant].html"
},
{
"source": "/packages/:name/:tag/:variant/code",
"destination": "/packages/[name]/[tag]/[variant]/code.html"
},
{
"source": "/packages/:name/:tag/:variant/code/:moduleName",
"destination": "/packages/[name]/[tag]/[variant]/code/[moduleName].html"
},
{
"source": "/packages/:name/:tag/:variant/interact",
"destination": "/packages/[name]/[tag]/[variant]/interact.html"
},
{
"source": "/packages/:name/:tag/:variant/deployment",
"destination": "/packages/[name]/[tag]/[variant]/deployment.html"
},
{
"source": "/packages/:name/:tag/:variant/interact/:moduleName",
"destination": "/packages/[name]/[tag]/[variant]/interact/[moduleName].html"
},
{
"source": "/packages/:name/:tag/:variant/interact/:moduleName/:contractName/:contractAddress",
"destination": "/packages/[name]/[tag]/[variant]/interact/[moduleName]/[contractName]/[contractAddress].html"
},
{
"source": "/packages/:name/:tag/:variant/cannonfile",
"destination": "/packages/[name]/[tag]/[variant]/cannonfile.html"
},
{
"source": "/deploy/txn/:chainId/:safeAddress/:nonce/:sigHash",
"destination": "/deploy/txn/[chainId]/[safeAddress]/[nonce]/[sigHash].html"
},
{
"source": "/learn/guides/get-started/:section",
"destination": "/learn/guides/get-started/[section].html"
}
],
"cleanUrls": true
}