fix(bazel): add favicon to web package (#29017)

This would fix the RESOURCE_NOT_FOUND error.

PR Close #29017
This commit is contained in:
Keen Yee Liau 2019-02-27 15:51:56 -08:00 committed by Andrew Kushnir
parent 03d2e5cb1d
commit 5fdf24e843
1 changed files with 4 additions and 1 deletions

View File

@ -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"],
)