-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathvercel.json
More file actions
19 lines (19 loc) · 754 Bytes
/
vercel.json
File metadata and controls
19 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"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" }
]
}