-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
76 lines (76 loc) · 1.76 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
{
"cleanUrls": true,
"trailingSlash": false,
"redirects": [
{
"source": "/",
"destination": "/api/version",
"permanent": true
}
],
"rewrites": [
{
"source": "/api/v1/prices/",
"destination": "/api/v1/prices"
},
{
"source": "/api/v1/address/:address",
"destination": "/api/v1/address"
},
{
"source": "/api/v1/address/:address/pnl",
"destination": "/api/v1/address/pnl"
},
{
"source": "/api/v1/deployer/transactions",
"destination": "/api/v1/deployer/transactions"
},
{
"source": "/api/v1/account/verify",
"destination": "/api/v1/account/verify"
},
{
"source": "/api/v1/account/update-info",
"destination": "/api/v1/account/update-info"
},
{
"source": "/api/v1/account/info/:address",
"destination": "/api/v1/account/info"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS"
},
{
"key": "Access-Control-Allow-Headers",
"value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version"
},
{
"key": "Access-Control-Max-Age",
"value": "86400"
},
{
"key": "Cache-Control",
"value": "public, max-age=3600, s-maxage=3600"
},
{
"key": "Pragma",
"value": "no-cache"
}
]
}
]
}