We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f81e92e commit 50ce44dCopy full SHA for 50ce44d
website/astro.config.mjs
@@ -5,6 +5,6 @@ import tailwindcss from "@tailwindcss/vite";
5
// https://astro.build/config
6
export default defineConfig({
7
vite: { plugins: [tailwindcss()] },
8
- site: "https://earth-walker.github.io",
+ site: "https://codeforphilly.github.io",
9
base: "/benefit-decision-toolkit",
10
});
website/src/components/Header.astro
@@ -16,7 +16,7 @@ import logo from "../assets/logos/bdt-logo-large-mono-dark.svg";
16
{
17
navLinks.map((link) => (
18
<li>
19
- <a href={`${import.meta.env.BASE_URL}/${link.path}`}>
+ <a href={`${import.meta.env.BASE_URL}${link.path}`}>
20
{link.title}
21
</a>
22
</li>
0 commit comments