-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
vercel.json
24 lines (24 loc) · 840 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
{
"functions": {
"api/**": {
"maxDuration": 30
}
},
"headers": [{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "X-XSS-Protection", "value": "1; mode=block" }
]
}],
"rewrites": [
{ "source": "/", "destination": "/api/index" },
{ "source": "/result", "destination": "/api/index" },
{ "source": "/scan-results", "destination": "/api/index" },
{ "source": "/parse-failure", "destination": "/api/index" },
{ "source": "/badge", "destination": "/api/index" },
{ "source": "/api.json", "destination": "/api/index" },
{ "source": "/v2/api.json", "destination": "/api/index" }
]
}