-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvercel.json
More file actions
21 lines (21 loc) · 752 Bytes
/
vercel.json
File metadata and controls
21 lines (21 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "Referrer-Policy", "value": "no-referrer" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" },
{ "key": "X-DNS-Prefetch-Control", "value": "off" }
]
}
],
"installCommand": "HUSKY=0 YARN_CACHE_FOLDER=/tmp/yarn-cache yarn install --frozen-lockfile --network-timeout 600000 --network-concurrency 1 --child-concurrency 1",
"buildCommand": "yarn build",
"outputDirectory": "build",
"framework": "vite"
}