Old Astro setup

This commit is contained in:
Alexis
2024-08-06 16:55:05 +02:00
parent 7e61f617c2
commit 4f01f8b373
26 changed files with 8564 additions and 14262 deletions

12
astro.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [
tailwind({
applyBaseStyles: false
})
]
});