fix(bazel): add favicon to web package (#29017)
This would fix the RESOURCE_NOT_FOUND error. PR Close #29017
This commit is contained in:
parent
03d2e5cb1d
commit
5fdf24e843
|
@ -53,7 +53,7 @@ web_package(
|
|||
":bundle.min.js",
|
||||
],
|
||||
data = [
|
||||
":bundle",
|
||||
"favicon.ico",
|
||||
],
|
||||
index_html = "index.html",
|
||||
)
|
||||
|
@ -89,6 +89,9 @@ ts_devserver(
|
|||
static_files = [
|
||||
"@npm//node_modules/zone.js:dist/zone.min.js",
|
||||
],
|
||||
data = [
|
||||
"favicon.ico",
|
||||
],
|
||||
index_html = "index.html",
|
||||
deps = [":src"],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue