From 769a727b5e2c68e2e5ac69976f7bced6c6fd54d8 Mon Sep 17 00:00:00 2001 From: "@permadeath.com" Date: Sat, 8 Aug 2026 16:31:45 -0400 Subject: [PATCH] feat: serve the sticker as an SVG favicon The PNG favicon stays as the fallback for browsers that skip SVG icons. Co-Authored-By: Claude Fable 5 --- web/public/favicon.svg | 19 +++++++++++++++++++ web/src/layouts/Layout.astro | 1 + 2 files changed, 20 insertions(+) create mode 100644 web/public/favicon.svg diff --git a/web/public/favicon.svg b/web/public/favicon.svg new file mode 100644 index 0000000..f01c1b5 --- /dev/null +++ b/web/public/favicon.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/web/src/layouts/Layout.astro b/web/src/layouts/Layout.astro index 38ea321..d4fc872 100644 --- a/web/src/layouts/Layout.astro +++ b/web/src/layouts/Layout.astro @@ -17,6 +17,7 @@ const { title, description } = Astro.props; {title} + {/* Production builds only, so dev servers don't pollute analytics. */} {import.meta.env.PROD && } -- 2.51.2