diff options
author | 2021-08-16 14:34:08 -0700 | |
---|---|---|
committer | 2021-08-16 14:34:08 -0700 | |
commit | 5e0e27660972b05ea4cfa466fc0a5cd751149406 (patch) | |
tree | a7958628ab3b05df75d987b11a54fc7946f8cf1a /examples/with-markdown-plugins/src | |
parent | b03f1f71b7bfc1b3e76bd349ba88862509c63bc6 (diff) | |
download | astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.tar.gz astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.tar.zst astro-5e0e27660972b05ea4cfa466fc0a5cd751149406.zip |
cleanup example favicons
Diffstat (limited to 'examples/with-markdown-plugins/src')
-rw-r--r-- | examples/with-markdown-plugins/src/layouts/main.astro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/with-markdown-plugins/src/layouts/main.astro b/examples/with-markdown-plugins/src/layouts/main.astro index 410ab1037..e0a60c7ad 100644 --- a/examples/with-markdown-plugins/src/layouts/main.astro +++ b/examples/with-markdown-plugins/src/layouts/main.astro @@ -6,8 +6,7 @@ const { content } = Astro.props; <head> <meta charset="utf-8" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> + <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <title>{content.title}</title> <link rel="stylesheet" href="/global.css" /> |