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", "$schema": "https://openapi.vercel.sh/vercel.json",
"bunVersion": "1", "bunVersion": "1",
"outputDirectory": "dist", "buildCommand": "bun run build",
"rewrites": [{ "source": "/(.*)", "destination": "/api/relay" }] "installCommand": "bun install",
"routes": [
{ "src": "/(.*)", "dest": "/$1" }
]
} }