diff options
Diffstat (limited to 'src/components/HeaderLink.astro')
-rw-r--r-- | src/components/HeaderLink.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/HeaderLink.astro b/src/components/HeaderLink.astro index b98a39e..c53880d 100644 --- a/src/components/HeaderLink.astro +++ b/src/components/HeaderLink.astro @@ -10,7 +10,7 @@ const isActive = href === pathname || href === "/" + (subpath?.[0] || ""); --- <a - href={"/base/" + href} + href={"/astro-blog/" + href} class:list={[className, { active: isActive }]} {...props} > |