Skip to content

Commit

Permalink
fix: add empty favicon to suppress error logs for missing favicon (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamMaoMao authored Oct 1, 2024
1 parent 495ccc7 commit 3d2baaa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/boilerplate-react-buildless/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
src="https://unpkg.com/@babel/[email protected]/babel.min.js"
Expand Down
3 changes: 3 additions & 0 deletions examples/starter/vanilla.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
src="https://unpkg.com/@babel/[email protected]/babel.min.js"
Expand Down
3 changes: 3 additions & 0 deletions examples/starter/with-glazewm.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
src="https://unpkg.com/@babel/[email protected]/babel.min.js"
Expand Down
3 changes: 3 additions & 0 deletions examples/starter/with-komorebi.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />

<!-- Disable find icon in local path. -->
<link rel="icon" href="data:;base64,=" />

<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
src="https://unpkg.com/@babel/[email protected]/babel.min.js"
Expand Down

0 comments on commit 3d2baaa

Please sign in to comment.