-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvercel.json
More file actions
18 lines (18 loc) · 606 Bytes
/
Copy pathvercel.json
File metadata and controls
18 lines (18 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "nextjs",
"installCommand": "npm ci",
"buildCommand": "npm run build:shared && npm run build:client",
"outputDirectory": "client/.next",
"ignoreCommand": "git diff --quiet HEAD^ HEAD -- client packages package.json package-lock.json",
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "X-Frame-Options", "value": "SAMEORIGIN" }
]
}
]
}