Bind web dev server to port 3000

Simplify the web dev launcher to always use port 3000 and fix the dev:web script cwd invocation.
This commit is contained in:
dirtydishes 2025-12-29 18:42:01 -05:00
parent b8f9e585e9
commit 18366192b2
2 changed files with 2 additions and 55 deletions

View file

@ -11,7 +11,7 @@
"dev": "bun run scripts/dev.ts",
"dev:infra": "docker compose up",
"dev:infra:down": "docker compose down",
"dev:web": "bun --cwd apps/web run dev",
"dev:web": "bun --cwd=apps/web run dev",
"dev:services": "bun run scripts/dev-services.ts"
}
}