From 9759d63b38f0d3fa886b383d0ea4475b3ab77429 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Thu, 7 May 2026 20:03:57 +0700 Subject: [PATCH] feat: add index.html for Edge Proxy Relay interface and remove rewrites from vercel.json --- public/index.html => index.html | 0 vercel.json | 8 +------- 2 files changed, 1 insertion(+), 7 deletions(-) rename public/index.html => index.html (100%) diff --git a/public/index.html b/index.html similarity index 100% rename from public/index.html rename to index.html diff --git a/vercel.json b/vercel.json index 09fe439..9fbbe05 100644 --- a/vercel.json +++ b/vercel.json @@ -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" } \ No newline at end of file