digitaljerry
commited on
Commit
•
55a1bbc
1
Parent(s):
64263c4
added svg favicon (#205)
Browse filesclose #203
* added svg favicon and updated link
* included png favicon as fallback sizes 16 and 32
* removed sizes to avoid duplicates
- src/app.html +2 -1
- static/favicon.svg +14 -0
src/app.html
CHANGED
@@ -2,7 +2,8 @@
|
|
2 |
<html lang="en" class="h-full">
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
-
<link rel="icon" href="%sveltekit.assets%/favicon.
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
7 |
<title>HuggingChat</title>
|
8 |
<script>
|
|
|
2 |
<html lang="en" class="h-full">
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
+
<link rel="icon" href="%sveltekit.assets%/favicon.svg" type="image/svg+xml" />
|
6 |
+
<link rel="icon" href="%sveltekit.assets%/favicon.png" type="image/png" />
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
8 |
<title>HuggingChat</title>
|
9 |
<script>
|
static/favicon.svg
ADDED