fix(bazel): devserver shows blank page in Windows (#35159)
`additional_root_paths` should contain the workspace name see: d4200191c5/packages/typescript/src/internal/devserver/ts_devserver.bzl (L137-L140)
Fixes #35144
PR Close #35159
This commit is contained in:
parent
6fb538ed1d
commit
129010e4c2
|
@ -116,7 +116,7 @@ filegroup(
|
||||||
|
|
||||||
ts_devserver(
|
ts_devserver(
|
||||||
name = "devserver",
|
name = "devserver",
|
||||||
additional_root_paths = ["src/_"],
|
additional_root_paths = ["project/src/_"],
|
||||||
port = 4200,
|
port = 4200,
|
||||||
entry_module = "project/src/main.dev",
|
entry_module = "project/src/main.dev",
|
||||||
serving_path = "/bundle.min.js",
|
serving_path = "/bundle.min.js",
|
||||||
|
|
Loading…
Reference in New Issue