diff options
author | 2021-08-16 14:34:08 -0700 | |
---|---|---|
committer | 2021-08-16 14:34:08 -0700 | |
commit | 5e0e27660972b05ea4cfa466fc0a5cd751149406 (patch) | |
tree | a7958628ab3b05df75d987b11a54fc7946f8cf1a /www/src/components | |
parent | b03f1f71b7bfc1b3e76bd349ba88862509c63bc6 (diff) | |
download | astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.tar.gz astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.tar.zst astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.zip |
cleanup example favicons
Diffstat (limited to 'www/src/components')
-rw-r--r-- | www/src/components/BaseHead.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/src/components/BaseHead.astro b/www/src/components/BaseHead.astro index b060d78ed..bfda88863 100644 --- a/www/src/components/BaseHead.astro +++ b/www/src/components/BaseHead.astro @@ -7,10 +7,11 @@ export interface Props { const { title, description, permalink } = Astro.props; --- +<!-- Global Metadata --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> +<link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> <!-- Primary Meta Tags --> <title>{title}</title> |