-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
22 lines (22 loc) · 823 Bytes
/
vercel.json
File metadata and controls
22 lines (22 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"cleanUrls": true,
"trailingSlash": false,
"rewrites": [
{ "source": "/docs", "destination": "/docs.html" },
{ "source": "/account", "destination": "/account.html" },
{ "source": "/auth/login", "destination": "/api/auth" },
{ "source": "/auth/sign-out", "destination": "/api/sign-out" },
{ "source": "/google9c67618d2c8a53dc.html", "destination": "/google9c67618d2c8a53dc.html" }
],
"headers": [
{
"source": "/api/(.*)",
"headers": [
{ "key": "Access-Control-Allow-Origin", "value": "*" },
{ "key": "Access-Control-Allow-Methods", "value": "GET, POST, OPTIONS" },
{ "key": "Access-Control-Allow-Headers", "value": "Content-Type, x-nipcode-api-key" },
{ "key": "Cache-Control", "value": "public, max-age=60, s-maxage=300" }
]
}
]
}