Set up tailwind maybe...

This commit is contained in:
2024-10-30 15:47:43 +01:00
parent 385b22d4e4
commit 114eaddc94
3 changed files with 25 additions and 2 deletions

View File

@@ -1,7 +1,10 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
output: "server",
});
output: "server",
integrations: [tailwind()],
});