new minimal retro theme, progress on parallax hero, refactor into semantic html,

add htmx and alpine, etc
This commit is contained in:
badblocks 2026-01-04 21:36:08 -08:00
parent 43e8dcff5e
commit 8d989ef36f
No known key found for this signature in database
25 changed files with 1520 additions and 179 deletions

View file

@ -1,5 +1,25 @@
import htmx from "astro-htmx";
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";
import alpinejs from "@astrojs/alpinejs";
import partytown from "@astrojs/partytown";
import sitemap from "@astrojs/sitemap";
import bun from "@nurodev/astro-bun";
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
site: "https://badblocks.dev",
adapter: bun(),
output: "static",
integrations: [
alpinejs(),
partytown(),
sitemap(),
htmx(),
// sitemap({
// filter: (page) =>
// page !== "https://example.com/secret-vip-lounge-1/" &&
// page !== "https://example.com/secret-vip-lounge-2/",
// }),
],
});