First demo

This commit is contained in:
2026-01-11 17:19:43 +01:00
parent ac3114e845
commit d001d20d91
22 changed files with 762 additions and 241 deletions

View File

@ -1,5 +1,13 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from "@tailwindcss/vite";
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
output: "static",
vite: {
plugins: [tailwindcss()]
}
});