Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Change Astro config to not minify HTML.
  • Loading branch information
fwextensions committed Jan 17, 2024
1 parent 63d02f3 commit ce789b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions packages/astro/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});

0 comments on commit ce789b5

Please sign in to comment.