-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
29 lines (29 loc) · 968 Bytes
/
vercel.json
File metadata and controls
29 lines (29 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"version": 2,
"framework": "astro",
"buildCommand": "pnpm build",
"devCommand": "astro dev",
"installCommand": "corepack enable && corepack install && pnpm install --no-frozen-lockfile",
"routes": [
{
"src": "^/_astro/(.*)$",
"headers": {
"cache-control": "public, max-age=31536000, immutable"
},
"continue": true
},
{
"src": "/(.*)",
"headers": {
"X-Content-Type-Options": "nosniff",
"X-Frame-Options": "DENY",
"X-XSS-Protection": "1; mode=block",
"Referrer-Policy": "strict-origin-when-cross-origin",
"Permissions-Policy": "camera=(), microphone=(), geolocation=()",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains"
},
"continue": true
},
{ "handle": "filesystem" }
]
}