diff --git a/apps/marketing/package.json b/apps/marketing/package.json index a9496b527..6e303bee5 100644 --- a/apps/marketing/package.json +++ b/apps/marketing/package.json @@ -5,6 +5,7 @@ "type": "module", "scripts": { "dev": "next dev", + "build:marketing": "bun run build", "build": "next build", "preview": "next start", "start": "next start", diff --git a/vercel.json b/vercel.json index dc2a991dd..51a4099cd 100644 --- a/vercel.json +++ b/vercel.json @@ -1,6 +1,6 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", - "buildCommand": "bun run build:marketing", + "buildCommand": "cd apps/marketing && bun run build:marketing", "installCommand": "bun install", "outputDirectory": "apps/marketing/.next" }