From 9be9104ac1ffb5259275eaadb7b60ae47f8893c4 Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Sat, 29 Jun 2024 18:30:18 +0200 Subject: [PATCH] fix(BaseHead): Add missing base href The commit fixes an issue in the BaseHead component where the base href was missing. This caused incorrect URLs for favicon and other resources. The fix adds the missing base href to ensure correct resource paths are used. --- nodsoft_moltenobsidian_web/src/components/BaseHead.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/nodsoft_moltenobsidian_web/src/components/BaseHead.astro b/nodsoft_moltenobsidian_web/src/components/BaseHead.astro index b7c25a7..614cd49 100644 --- a/nodsoft_moltenobsidian_web/src/components/BaseHead.astro +++ b/nodsoft_moltenobsidian_web/src/components/BaseHead.astro @@ -6,6 +6,7 @@ const base = import.meta.env.BASE_URL ?? "/"; +