From d8e1e125b15af9903a433f22664717c411e9ec05 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Thu, 7 May 2026 19:46:08 +0700 Subject: [PATCH] feat: update vercel.json to restore build and install commands, and adjust routing configuration --- vercel.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vercel.json b/vercel.json index ee220c6..38fb2fe 100644 --- a/vercel.json +++ b/vercel.json @@ -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" } + ] } \ No newline at end of file