diff options
author | LarsVomMars | 2024-12-27 17:21:54 +0100 |
---|---|---|
committer | LarsVomMars | 2024-12-27 17:21:54 +0100 |
commit | d8aa33cd84aaac217a9b9e7b6c4a0c1fa0f02046 (patch) | |
tree | 8dcdf597f5c4741279fcd7e0c25e79b792606c0d /src/components/HeaderLink.astro | |
parent | ca263eecf8d44a4b98b12b63f83a8c1f3ce4468a (diff) |
Diffstat (limited to 'src/components/HeaderLink.astro')
-rw-r--r-- | src/components/HeaderLink.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/HeaderLink.astro b/src/components/HeaderLink.astro index c53880d..a18dd3c 100644 --- a/src/components/HeaderLink.astro +++ b/src/components/HeaderLink.astro @@ -1,5 +1,6 @@ --- import type { HTMLAttributes } from "astro/types"; +import { SITE_BASE } from "../consts"; type Props = HTMLAttributes<"a">; @@ -10,7 +11,7 @@ const isActive = href === pathname || href === "/" + (subpath?.[0] || ""); --- <a - href={"/astro-blog/" + href} + href={SITE_BASE + "/" + href} class:list={[className, { active: isActive }]} {...props} > |