Skip to content

Commit 282efd6

Browse files
authored
Fix marketing Vercel build script resolution (#170)
* Fix marketing Vercel output config * fix: make marketing vercel build scripts robust
1 parent fe88547 commit 282efd6

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

apps/marketing/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"dev": "next dev",
8+
"build:marketing": "bun run build",
89
"build": "next build",
910
"preview": "next start",
1011
"start": "next start",

vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://openapi.vercel.sh/vercel.json",
3-
"buildCommand": "bun run build:marketing",
3+
"buildCommand": "cd apps/marketing && bun run build:marketing",
44
"installCommand": "bun install",
55
"outputDirectory": "apps/marketing/.next"
66
}

0 commit comments

Comments
 (0)