aboutsummaryrefslogtreecommitdiff
path: root/src/components/Head.astro
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-06-06 02:33:09 +0300
committerValentin Popov <valentin@popov.link>2025-06-06 02:33:09 +0300
commite56c4f3edf42f7a08c0d3714622eb62a20bf3349 (patch)
treedd39c403912a7704fb6cefa3d156eb79b759ad14 /src/components/Head.astro
parente9612c756b0800d76560d6f5c685dee75f11e1c8 (diff)
downloadpopov.link-e56c4f3edf42f7a08c0d3714622eb62a20bf3349.tar.xz
popov.link-e56c4f3edf42f7a08c0d3714622eb62a20bf3349.zip
perf: improve site icon loading
Diffstat (limited to 'src/components/Head.astro')
-rw-r--r--src/components/Head.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Head.astro b/src/components/Head.astro
index 8ed2224..de74ff2 100644
--- a/src/components/Head.astro
+++ b/src/components/Head.astro
@@ -22,7 +22,8 @@ const { description, title } = Astro.props;
<title>{title}</title>
- <link rel="icon" href="/favicon.png" />
+ <link rel="icon" type="image/x-icon" href="/favicon.ico" />
+ <link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#ffffff" />