Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,15 @@ bun dev:desktop # Electron desktop + web
bun dev:marketing # Astro marketing site
```

Build marketing directly:

```bash
bun install
bun run build:marketing
```

If `bun run build:marketing` fails with `next: command not found`, run `bun install` first to restore workspace dependencies.

Quality checks:

```bash
Expand Down
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "cd apps/marketing && bun run build:marketing",
"buildCommand": "bun run build:marketing",
"installCommand": "bun install",
"outputDirectory": "apps/marketing/.next"
}
Loading