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",
|
":bundle.min.js",
|
||||||
],
|
],
|
||||||
data = [
|
data = [
|
||||||
":bundle",
|
"favicon.ico",
|
||||||
],
|
],
|
||||||
index_html = "index.html",
|
index_html = "index.html",
|
||||||
)
|
)
|
||||||
|
@ -89,6 +89,9 @@ ts_devserver(
|
||||||
static_files = [
|
static_files = [
|
||||||
"@npm//node_modules/zone.js:dist/zone.min.js",
|
"@npm//node_modules/zone.js:dist/zone.min.js",
|
||||||
],
|
],
|
||||||
|
data = [
|
||||||
|
"favicon.ico",
|
||||||
|
],
|
||||||
index_html = "index.html",
|
index_html = "index.html",
|
||||||
deps = [":src"],
|
deps = [":src"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue