From e366c916ebf2565ba5f40e76af94c1917eb06b62 Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Wed, 1 Apr 2026 07:24:35 -0500 Subject: [PATCH] Add Vercel config for marketing app - Set Next.js framework and Bun build/install commands - Point output to `.next` for Vercel deployment --- apps/marketing/vercel.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 apps/marketing/vercel.json diff --git a/apps/marketing/vercel.json b/apps/marketing/vercel.json new file mode 100644 index 000000000..38cebdc94 --- /dev/null +++ b/apps/marketing/vercel.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "framework": "nextjs", + "buildCommand": "bun run build", + "installCommand": "bun install", + "devCommand": "bun run dev", + "outputDirectory": ".next" +}