forked from canpolatlardanfurkan/api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
19 lines (19 loc) · 715 Bytes
/
Copy pathvercel.json
File metadata and controls
19 lines (19 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"routes": [
{ "handle": "filesystem" },
{
"src": "/(.*)",
"headers": {
"Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "1; mode=block",
"Referrer-Policy": "strict-origin-when-cross-origin"
},
"continue": true
},
{ "src": "/", "status": 308, "headers": { "Location": "/api/" } },
{ "src": "/(.*)", "status": 404, "dest": "/api/404.html" },
{ "src": "/motion/(.*)", "status": 404, "dest": "/api/motion/404.html" }
]
}