proxy / vercel.json
OpenCode
fix: dashboard body parsing for Vercel serverless
0ea5126
Raw
History Blame Contribute Delete
332 Bytes
{
"rewrites": [
{
"source": "/v1/:path*",
"destination": "/api/v1/:path*"
},
{
"source": "/health",
"destination": "/api/health"
},
{
"source": "/dashboard",
"destination": "/api/dashboard"
},
{
"source": "/",
"destination": "/api/dashboard"
}
]
}