new minimal retro theme, progress on parallax hero, refactor into semantic html,
add htmx and alpine, etc
This commit is contained in:
parent
43e8dcff5e
commit
8d989ef36f
25 changed files with 1520 additions and 179 deletions
|
|
@ -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/",
|
||||
// }),
|
||||
],
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue