From ed75a3078378adfa4a18b713ae300729ea6f0985 Mon Sep 17 00:00:00 2001 From: MerverliPy Date: Wed, 8 Jul 2026 10:56:54 -0500 Subject: [PATCH] fix: add vercel.json for mobile-web SPA deployment --- vercel.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..68c3ddb --- /dev/null +++ b/vercel.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "installCommand": "bun install", + "buildCommand": "bun run build", + "outputDirectory": "apps/mobile-web/dist", + "framework": "vite", + "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }], + "github": { + "silent": true + } +}