Skip to content

Commit 50ce44d

Browse files
committed
fix base url and links
1 parent f81e92e commit 50ce44d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

website/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ import tailwindcss from "@tailwindcss/vite";
55
// https://astro.build/config
66
export default defineConfig({
77
vite: { plugins: [tailwindcss()] },
8-
site: "https://earth-walker.github.io",
8+
site: "https://codeforphilly.github.io",
99
base: "/benefit-decision-toolkit",
1010
});

website/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import logo from "../assets/logos/bdt-logo-large-mono-dark.svg";
1616
{
1717
navLinks.map((link) => (
1818
<li>
19-
<a href={`${import.meta.env.BASE_URL}/${link.path}`}>
19+
<a href={`${import.meta.env.BASE_URL}${link.path}`}>
2020
{link.title}
2121
</a>
2222
</li>

0 commit comments

Comments
 (0)