From ce789b5859f705482e63348c6a83524bb805805e Mon Sep 17 00:00:00 2001 From: John Dunning Date: Tue, 16 Jan 2024 18:53:38 -0800 Subject: [PATCH] Update README.md Change Astro config to not minify HTML. --- README.md | 7 +++++++ packages/astro/astro.config.mjs | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 692ed57..2735712 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,13 @@ But those are **not** necessarily the goals for this repo. Here we want to coll Once we have some of those questions answered, we can start working on the full implementation of the new site. We may be able to leverage some of the code from these explorations, but we may also just start over from scratch, so we can be loose with the code in this repo. +## Astro proof of concept + +A very rough skeleton of the site is now available at https://sfbrigade.github.io/sfcivictech-site-explorations/ + +The "recent" blog posts are pulled from the markdown files from the old site, and are dynamically generated during the build. The site has some basic styling from Pico CSS, but is otherwise unthemed. + + ## Proposed tech stack Just as a stake in the ground: diff --git a/packages/astro/astro.config.mjs b/packages/astro/astro.config.mjs index 0e5c0e4..0c0bf03 100644 --- a/packages/astro/astro.config.mjs +++ b/packages/astro/astro.config.mjs @@ -2,8 +2,9 @@ import { defineConfig } from "astro/config"; // https://astro.build/config export default defineConfig({ -// site: "https://sfbrigade.github.io", +// site: "https://www.sfcivictech.org/" // base: "/", +// site: "https://sfbrigade.github.io", base: "/sfcivictech-site-explorations/", -// site: "https://www.sfcivictech.org/" + compressHTML: false, });