feat: add index.html for Edge Proxy Relay interface and remove rewrites from vercel.json

This commit is contained in:
MythEclipse
2026-05-07 20:03:57 +07:00
parent 49f50b7aa8
commit 9759d63b38
2 changed files with 1 additions and 7 deletions
+1 -7
View File
@@ -1,11 +1,5 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"bunVersion": "1",
"installCommand": "bun install",
"rewrites": [
{ "source": "/api", "destination": "/api/index.ts" },
{ "source": "/api/(.*)", "destination": "/api/index.ts" },
{ "source": "/public/(.*)", "destination": "/public/$1" },
{ "source": "/(.*)", "destination": "/public/$1" }
]
"installCommand": "bun install"
}