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:
parent
129010e4c2
commit
dcff6c9940
|
@ -102,6 +102,10 @@ pkg_web(
|
|||
history_server(
|
||||
name = "prodserver",
|
||||
data = [":prodapp"],
|
||||
args = [
|
||||
"--port",
|
||||
"4200",
|
||||
],
|
||||
templated_args = ["src/prodapp"],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue