From b32b6a5a2888d7d1a9e501951fea06bee81969cf Mon Sep 17 00:00:00 2001 From: Stysusss <158248053+stysus@users.noreply.github.com> Date: Tue, 18 Aug 2026 18:38:15 +0700 Subject: [PATCH] fix: static favicon links in app.html so crawlers can find them Frontend (delegated to agent frontend): - Favicon links moved to src/app.html
(static, server-rendered) - Google/crawlers reading raw HTML now see the favicon; previously links were only injected client-side via svelte:head, so Google showed the placeholder globe icon - Layout keeps only og:image favicon fallback (JSON-LD/OG) - Verified: raw build index.html contains favicon links; check/lint/build pass --- frontend/src/app.html | 5 +++++ frontend/src/routes/+layout.svelte | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/frontend/src/app.html b/frontend/src/app.html index 6a2bb58..a439ad3 100644 --- a/frontend/src/app.html +++ b/frontend/src/app.html @@ -4,6 +4,11 @@ + + + + + %sveltekit.head% diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index f762c34..72305e7 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -57,13 +57,6 @@