From 6791b2ffd10ee71c96fb5748e022edc3ef58b1d5 Mon Sep 17 00:00:00 2001 From: John Dunning Date: Sat, 13 Jan 2024 17:04:24 -0800 Subject: [PATCH] Switch the site base back to just / Even though the deployment is running from packages/astro, the pages are still output to / as the root. --- packages/astro/astro.config.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/astro/astro.config.mjs b/packages/astro/astro.config.mjs index f8826bd..071f946 100644 --- a/packages/astro/astro.config.mjs +++ b/packages/astro/astro.config.mjs @@ -2,7 +2,8 @@ import { defineConfig } from "astro/config"; // https://astro.build/config export default defineConfig({ - site: "https://sfbrigade.github.io", - base: "/sfcivictech-site-explorations/packages/astro/", +// site: "https://sfbrigade.github.io", + base: "/", +// base: "/sfcivictech-site-explorations/packages/astro/", // site: "https://www.sfcivictech.org/" });