forked from dydxprotocol/v4-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvercel.json
48 lines (48 loc) · 1.17 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
{
"rewrites": [
{
"source": "/portfolio(/?.*)",
"destination": "/entry-points/portfolio.html"
},
{
"source": "/markets(/?.*)",
"destination": "/entry-points/markets.html"
},
{
"source": "/DYDX/trading-rewards(/?.*)",
"destination": "/entry-points/trading-rewards.html"
},
{
"source": "/trade/ETH-USD(/?.*)",
"destination": "/entry-points/trade-ETH-USD.html"
},
{
"source": "/trade/BTC-USD(/?.*)",
"destination": "/entry-points/trade-BTC-USD.html"
},
{
"source": "/trade/SOL-USD(/?.*)",
"destination": "/entry-points/trade-SOL-USD.html"
},
{
"source": "/trade/AVAX-USD(/?.*)",
"destination": "/entry-points/trade-AVAX-USD.html"
},
{
"source": "/trade/LINK-USD(/?.*)",
"destination": "/entry-points/trade-LINK-USD.html"
},
{
"source": "/trade/MATIC-USD(/?.*)",
"destination": "/entry-points/trade-MATIC-USD.html"
},
{
"source": "/trade/DOGE-USD(/?.*)",
"destination": "/entry-points/trade-DOGE-USD.html"
},
{
"source": "/(.*)",
"destination": "/entry-points/index.html"
}
]
}