From 9dcf002bb76e4b2b4e258134eddcdc66b3615ea5 Mon Sep 17 00:00:00 2001 From: Huynh Duc Dung Date: Sat, 23 Sep 2023 22:42:21 +0800 Subject: [PATCH] fix(ci): try to rewrite the url to root domain fix: try to fix vercel --- vercel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vercel.json b/vercel.json index 6dfcb40..43b3c54 100644 --- a/vercel.json +++ b/vercel.json @@ -1,8 +1,8 @@ { "rewrites": [ { - "source": "/api/(.*)", - "destination": "/api" + "source": "/(.*)", + "destination": "/api/index.js" } ] }