mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-29 00:01:42 +08:00
27 lines
485 B
JSON
27 lines
485 B
JSON
{
|
|
"version": 2,
|
|
"buildCommand": "pnpm build:vercel",
|
|
"outputDirectory": "dist",
|
|
"functions": {
|
|
"api/entry-vercel.js": {
|
|
"runtime": "nodejs22.x",
|
|
"memory": 512,
|
|
"maxDuration": 30
|
|
}
|
|
},
|
|
"rewrites": [
|
|
{
|
|
"source": "/api/(.*)",
|
|
"destination": "/api/entry-vercel"
|
|
},
|
|
{
|
|
"source": "/health",
|
|
"destination": "/api/entry-vercel"
|
|
},
|
|
{
|
|
"source": "/((?!api/).*)",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|