forked from pancakeswap/pancake-info-api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvercel.json
45 lines (45 loc) · 958 Bytes
/
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
{
"cleanUrls": true,
"trailingSlash": false,
"rewrites": [
{
"source": "/api/orderbook/:pair",
"destination": "/api/orderbook"
},
{
"source": "/api/trades/:pair",
"destination": "/api/trades"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"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": "Accept, Content-Type, Origin"
},
{
"key": "Access-Control-Max-Age",
"value": "86400"
},
{
"key": "Cache-Control",
"value": "s-maxage=60, stale-while-revalidate"
},
{
"key": "Pragma",
"value": "no-cache"
}
]
}
]
}