Files
c-atlas/vercel.json
2025-11-07 13:40:27 +01:00

26 lines
436 B
JSON

{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"rewrites": [
{
"source": "/paper",
"destination": "/paper.html"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}