Files
ALwrity/vercel.json
2025-10-08 17:25:09 +05:30

41 lines
772 B
JSON

{
"version": 2,
"buildCommand": "cd frontend && npm install && npm run build",
"outputDirectory": "frontend/build",
"framework": null,
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
},
{
"source": "/static/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}