Skip to content

Commit b201dc7

Browse files
crisbetotinayuangao
authored andcommitted
chore: fix demo app not serving the favicon (#9644)
Fixes the demo app 404ing on the favicon.
1 parent 34d6e6d commit b201dc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gulp/tasks/development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const appVendors = [
4040
const vendorGlob = `+(${appVendors.join('|')})/**/*.+(html|css|js|map)`;
4141

4242
/** Glob that matches all assets that need to be copied to the output. */
43-
const assetsGlob = join(appDir, `**/*.+(html|css|svg)`);
43+
const assetsGlob = join(appDir, `**/*.+(html|css|svg|ico)`);
4444

4545
task(':watch:devapp', () => {
4646
watchFiles(join(appDir, '**/*.ts'), [':build:devapp:ts']);

0 commit comments

Comments
 (0)