forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
123 lines (123 loc) · 3.45 KB
/
vercel.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"redirects": [
{
"source": "/",
"destination": "/scaling/summary",
"permanent": true
},
{
"source": "/scaling",
"destination": "/scaling/summary",
"permanent": true
},
{
"source": "/scaling/detailedTvl",
"destination": "/scaling/tvl",
"permanent": true
},
{
"source": "/project/layer2.finance",
"destination": "/scaling/projects/layer2finance",
"permanent": true
},
{
"source": "/project/leverj",
"destination": "/scaling/projects/gluon",
"permanent": true
},
{
"source": "/projects/leverj",
"destination": "/scaling/projects/gluon",
"permanent": true
},
{
"source": "/projects/fuel",
"destination": "/scaling/projects/fuelv1",
"permanent": true
},
{
"source": "/projects/zkswapv2",
"destination": "/scaling/projects/zkspace",
"permanent": true
},
{
"source": "/projects/deversifi",
"destination": "/scaling/projects/rhinofi",
"permanent": true
},
{
"source": "/scaling/projects/zksync",
"destination": "/scaling/projects/zksync-lite",
"permanent": true
},
{
"source": "/scaling/projects/zksync2",
"destination": "/scaling/projects/zksync-era",
"permanent": true
},
{
"source": "/project/:name",
"destination": "/scaling/projects/:name",
"permanent": true
},
{
"source": "/projects/:name",
"destination": "/scaling/projects/:name",
"permanent": true
},
{
"source": "/bridges/tvl",
"destination": "/bridges/summary",
"permanent": true
},
{
"source": "/bridges",
"destination": "/bridges/summary",
"permanent": true
},
{
"source": "/jobs",
"destination": "https://l2beat.notion.site/We-are-hiring-Work-at-L2BEAT-e4e637265ae94c5db7dfa2de336b940f",
"permanent": true
}
],
"rewrites": [
{
"source": "/api/projects/:project/tvl/assets/:asset",
"has": [{ "type": "host", "value": ".*l2beat-staging.*" }],
"destination": "https://staging.l2beat.com/api/projects/:project/tvl/assets/:asset"
},
{
"source": "/api/projects/:project/tvl/assets/:asset",
"destination": "https://api.l2beat.com/api/projects/:project/tvl/assets/:asset"
},
{
"source": "/api/projects/:project/tvl/chains/:chain/assets/:asset/types/:type",
"has": [{ "type": "host", "value": ".*l2beat-staging.*" }],
"destination": "https://staging.l2beat.com/api/projects/:project/tvl/chains/:chain/assets/:asset/types/:type"
},
{
"source": "/api/projects/:project/tvl/chains/:chain/assets/:asset/types/:type",
"destination": "https://api.l2beat.com/api/projects/:project/tvl/chains/:chain/assets/:asset/types/:type"
},
{
"source": "/api/tvl/aggregate",
"has": [{ "type": "host", "value": ".*l2beat-staging.*" }],
"destination": "https://staging.l2beat.com/api/tvl/aggregate"
},
{
"source": "/api/tvl/aggregate",
"destination": "https://api.l2beat.com/api/tvl/aggregate"
},
{
"source": "/api/activity/aggregate",
"has": [{ "type": "host", "value": ".*l2beat-staging.*" }],
"destination": "https://staging.l2beat.com/api/activity/aggregate"
},
{
"source": "/api/activity/aggregate",
"destination": "https://api.l2beat.com/api/activity/aggregate"
}
],
"trailingSlash": false
}