diff options
author | Valentin Popov <valentin@popov.link> | 2025-06-06 02:33:09 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-06-06 02:33:09 +0300 |
commit | e56c4f3edf42f7a08c0d3714622eb62a20bf3349 (patch) | |
tree | dd39c403912a7704fb6cefa3d156eb79b759ad14 /src/components | |
parent | e9612c756b0800d76560d6f5c685dee75f11e1c8 (diff) | |
download | popov.link-e56c4f3edf42f7a08c0d3714622eb62a20bf3349.tar.xz popov.link-e56c4f3edf42f7a08c0d3714622eb62a20bf3349.zip |
perf: improve site icon loading
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Head.astro | 3 |
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" /> |