Got the homepage sorted

This commit is contained in:
2025-05-17 22:42:48 -06:00
parent b1cd87f20b
commit d86ae2f16b
49 changed files with 5226 additions and 1878 deletions

23
astro.config.mjs Normal file
View File

@ -0,0 +1,23 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
import preact from '@astrojs/preact';
import node from '@astrojs/node';
import icon from 'astro-icon';
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()]
},
integrations: [preact(), icon()],
adapter: node({
mode: 'standalone'
})
});