build: use different default port for dev-app

Same as ADEV, currently the CLI prompts for another port if 4200 is busy but the toolchain doesn't support prompts.

By defaulting to 4201 we avoid regular CLI apps from preventing to run the dev-app
This commit is contained in:
Matthieu Riegler
2026-02-27 00:08:48 +01:00
committed by Jessica Janiuk
parent cda3e8963a
commit 9bb4f02bef
+4
View File
@@ -43,6 +43,10 @@ ng_application(
ng_config = ":ng_config",
node_modules = ":node_modules",
project_name = "dev-app",
serve_args = [
"--port",
"4201",
],
tags = [
# Tagged as manual as both build and build.production use the same output directory.
"manual",