From 2ab6dc4b5f656dba935fd1da54453821b948aabf Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Wed, 23 Sep 2026 12:32:58 -0400 Subject: [PATCH] A favicon in the HTML itself, with the file in static Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_0141G6xqLeNRYEtviLWSB5Up --- template/src/app.html | 2 ++ template/src/routes/+layout.svelte | 5 ----- template/{src/lib/assets => static}/favicon.svg | 0 3 files changed, 2 insertions(+), 5 deletions(-) rename template/{src/lib/assets => static}/favicon.svg (100%) diff --git a/template/src/app.html b/template/src/app.html index 095dfff..46231f2 100644 --- a/template/src/app.html +++ b/template/src/app.html @@ -8,6 +8,8 @@ __NAME__ + + diff --git a/template/src/routes/+layout.svelte b/template/src/routes/+layout.svelte index a50d726..b93e9ba 100644 --- a/template/src/routes/+layout.svelte +++ b/template/src/routes/+layout.svelte @@ -1,12 +1,7 @@ - - - - {@render children()} diff --git a/template/src/lib/assets/favicon.svg b/template/static/favicon.svg similarity index 100% rename from template/src/lib/assets/favicon.svg rename to template/static/favicon.svg