diff options
author | 2022-08-17 15:19:04 -0500 | |
---|---|---|
committer | 2022-08-17 15:19:04 -0500 | |
commit | 41b81d0d7eab192a0999f9f4601ce27840834875 (patch) | |
tree | 685374b7841e97b523975e55b3a1e8959ec3a26f /examples/basics/src | |
parent | 1beb3f9747cada94db175a22e98fef0917f83e66 (diff) | |
download | astro-41b81d0d7eab192a0999f9f4601ce27840834875.tar.gz astro-41b81d0d7eab192a0999f9f4601ce27840834875.tar.zst astro-41b81d0d7eab192a0999f9f4601ce27840834875.zip |
Switch examples favicon to use svg (#4331)
* chore(examples): switch favicon to svg
* chore: astro.svg => favicon.svg
* Update examples/basics/README.md
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Co-authored-by: Nate Moore <nate@astro.build>
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Diffstat (limited to 'examples/basics/src')
-rw-r--r-- | examples/basics/src/layouts/Layout.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basics/src/layouts/Layout.astro b/examples/basics/src/layouts/Layout.astro index c75726968..1cea980c5 100644 --- a/examples/basics/src/layouts/Layout.astro +++ b/examples/basics/src/layouts/Layout.astro @@ -11,7 +11,7 @@ const { title } = Astro.props as Props; <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/x-icon" href="/favicon.ico" /> + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <meta name="generator" content={Astro.generator} /> <title>{title}</title> </head> |