Files
c-atlas/vercel.json
Danilo Znamerovszkij ea56f4a93c 🚀 prepare for vercel deploy
2025-09-26 17:44:27 +02:00

45 lines
801 B
JSON

{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"framework": "vite",
"functions": {
"app/api/**/*.js": {
"runtime": "nodejs20.x"
}
},
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
},
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
]
}