fix(bazel): spawn prod server using port 4200 (#35160)

Currently the prod server uses a default port of 8080, with this change we align the port with the devserver.

PR Close #35160
This commit is contained in:
Alan Agius 2020-02-05 10:53:34 +01:00 committed by Misko Hevery
parent 129010e4c2
commit dcff6c9940
1 changed files with 4 additions and 0 deletions

View File

@ -102,6 +102,10 @@ pkg_web(
history_server(
name = "prodserver",
data = [":prodapp"],
args = [
"--port",
"4200",
],
templated_args = ["src/prodapp"],
)