From c6e9bbdf1db03905a3a1d971de7e8b8fa038c8ed Mon Sep 17 00:00:00 2001
From: notohh <github@notohh.dev>
Date: Tue, 28 Jan 2025 00:26:24 -0500
Subject: [PATCH] link favicon

fix href
---
 src/app.html | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/src/app.html b/src/app.html
index 84ffad1..d5a71be 100644
--- a/src/app.html
+++ b/src/app.html
@@ -2,7 +2,19 @@
 <html lang="en">
   <head>
     <meta charset="utf-8" />
-    <link rel="icon" href="%sveltekit.assets%/favicon.png" />
+    <link
+      rel="icon"
+      type="image/png"
+      href="/static/favicon-96x96.png"
+      sizes="96x96"
+    />
+    <link rel="shortcut icon" href="/static/favicon.ico" />
+    <link
+      rel="apple-touch-icon"
+      sizes="180x180"
+      href="/static/apple-touch-icon.png"
+    />
+    <link rel="manifest" href="/static/site.webmanifest" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     %sveltekit.head%
   </head>