Erster Wurf, landing page

This commit is contained in:
2026-03-31 09:47:15 +02:00
parent b19e30679e
commit 26e57cb95e
5 changed files with 637 additions and 19 deletions

View File

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