diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 605c074..8f60213 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -5,5 +5,6 @@ import lit from "@astrojs/lit"; // https://astro.build/config export default defineConfig({ integrations: [lit()], - base: process.env.BASE_URL || '/', + site: process.env.SITE, + base: process.env.BASE_URL, }); diff --git a/web/src/components/Intro.astro b/web/src/components/Intro.astro index 2d548e0..9ffd358 100644 --- a/web/src/components/Intro.astro +++ b/web/src/components/Intro.astro @@ -1,4 +1,3 @@ -

About

diff --git a/web/src/components/Nav.astro b/web/src/components/Nav.astro index 14f7873..a1f2599 100644 --- a/web/src/components/Nav.astro +++ b/web/src/components/Nav.astro @@ -1,9 +1,10 @@ --- import './Icon'; +const baseUrl = import.meta.env.BASE_URL; ---