Files
ds2api/vercel.json
2026-02-04 13:57:34 +08:00

37 lines
608 B
JSON

{
"version": 2,
"builds": [
{
"src": "app.py",
"use": "@vercel/python"
}
],
"buildCommand": "bash scripts/build-webui.sh",
"routes": [
{
"src": "/(.*)",
"dest": "app.py"
}
],
"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"
}
]
}
]
}