Files
ds2api/vercel.json

36 lines
656 B
JSON

{
"version": 2,
"buildCommand": "npm ci --prefix webui && npm run build --prefix webui",
"functions": {
"api/index.go": {
"includeFiles": "static/admin/**"
}
},
"rewrites": [
{
"source": "/(.*)",
"destination": "/api/index"
}
],
"headers": [
{
"source": "/admin/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
},
{
"source": "/admin/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "no-store, must-revalidate"
}
]
}
]
}