From 12e1b151a76524db8cfb46e1d5d40b7b8130a386 Mon Sep 17 00:00:00 2001 From: saicaca Date: Sat, 25 May 2024 01:51:39 +0800 Subject: [PATCH] fix: fix base path not applied to mobile nav menu --- src/components/widget/NavMenuPanel.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/widget/NavMenuPanel.astro b/src/components/widget/NavMenuPanel.astro index 6e8977b..97d2bec 100644 --- a/src/components/widget/NavMenuPanel.astro +++ b/src/components/widget/NavMenuPanel.astro @@ -1,7 +1,7 @@ --- import {NavBarLink} from "../../types/config"; -import {siteConfig} from "../../config"; import {Icon} from "astro-icon/components"; +import {url} from "../../utils/url-utils"; interface Props { links: NavBarLink[], @@ -11,7 +11,7 @@ const links = Astro.props.links; ---