forked from vercel/vercel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vercel.json
50 lines (50 loc) · 1.03 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [
{
"source": "/",
"destination": "/api/frameworks"
},
{
"source": "/api/v1/frameworks",
"destination": "/api/frameworks"
},
{
"source": "/api/examples/list",
"destination": "/list.json"
},
{
"source": "/api/examples/list-all",
"destination": "/list-all.json"
}
],
"build": {
"env": {
"ENABLE_VC_BUILD": "1"
}
},
"github": {
"silent": true,
"autoJobCancelation": true
},
"headers": [
{
"source": "/api(/v[0-9]+)?/frameworks",
"headers": [
{
"key": "cache-control",
"value": "public, max-age=60, s-maxage=500, stale-while-revalidate=500, stale-if-error=500"
}
]
},
{
"source": "/api/examples(.*)",
"headers": [
{
"key": "cache-control",
"value": "public, max-age=60, s-maxage=86400, stale-while-revalidate=86400, stale-if-error=86400"
}
]
}
]
}