Skip to content

Commit

Permalink
fix(bazel): spawn prod server using port 4200 (#35160)
Browse files Browse the repository at this point in the history
Currently the prod server uses a default port of 8080, with this change we align the port with the devserver.

PR Close #35160
  • Loading branch information
alan-agius4 authored and mhevery committed Feb 6, 2020
1 parent 727f92f commit 829f506
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/bazel/src/builders/files/src/BUILD.bazel.template
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ pkg_web(
history_server(
name = "prodserver",
data = [":prodapp"],
args = [
"--port",
"4200",
],
templated_args = ["src/prodapp"],
)

Expand Down

0 comments on commit 829f506

Please sign in to comment.