From 9657ed66331c38a289008890beb92df8356cb524 Mon Sep 17 00:00:00 2001 From: Klaus Zanders Date: Fri, 12 Jun 2026 11:42:21 +0200 Subject: [PATCH] Do not generate $PORT variables for overmind processes in `bin/dev` --- bin/dev | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/dev b/bin/dev index 3b0257b2678..d9a1f3f6797 100755 --- a/bin/dev +++ b/bin/dev @@ -1,7 +1,9 @@ #!/usr/bin/env bash if command -v overmind &> /dev/null; then - overmind start -f Procfile.dev + # Start Procfile.dev and do not generate a $PORT env var, as this overrides our $FE_PORT, as the new version of + # `ng serve` seems to pick the $ENV var over the CLI arg, which causes the FE to fail to start on the expected port. + overmind start -f Procfile.dev -N elif command -v foreman &> /dev/null; then foreman start -f Procfile.dev else