feat: update vercel.json to restore build and install commands, and adjust routing configuration

This commit is contained in:
MythEclipse
2026-05-07 19:46:08 +07:00
parent 4cf3a520d5
commit d8e1e125b1
+5 -2
View File
@@ -1,6 +1,9 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"bunVersion": "1",
"outputDirectory": "dist",
"rewrites": [{ "source": "/(.*)", "destination": "/api/relay" }]
"buildCommand": "bun run build",
"installCommand": "bun install",
"routes": [
{ "src": "/(.*)", "dest": "/$1" }
]
}