From 42cf7a89c7dcdf6ba019fa3fc4761de52ffae2c9 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Thu, 7 May 2026 19:26:05 +0700 Subject: [PATCH] feat: add function configuration for Bun runtime in vercel.json --- vercel.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 8928b91..cdef0e5 100644 --- a/vercel.json +++ b/vercel.json @@ -1 +1,8 @@ -{ "rewrites": [{ "source": "/(.*)", "destination": "/api/relay" }] } +{ + "rewrites": [{ "source": "/(.*)", "destination": "/api/relay" }], + "functions": { + "api/**/*.ts": { + "runtime": "bun" + } + } +} \ No newline at end of file