Files
blog-code/vercel.json
2025-12-08 01:03:07 +08:00

40 lines
667 B
JSON

{
"buildCommand": "pnpm build",
"outputDirectory": "dist",
"installCommand": "pnpm install",
"framework": "astro",
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
}
]
},
{
"source": "/_astro/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
],
"cleanUrls": true
}