Skip to content

Commit 3f5a842

Browse files
committed
feat: Refactor layout and styling with Tailwind CSS integration
1 parent b01ce6e commit 3f5a842

File tree

12 files changed

+2292
-150
lines changed

12 files changed

+2292
-150
lines changed

astro.config.mjs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3+
import tailwindcss from "@tailwindcss/vite";
4+
5+
import icon from "astro-icon";
36

47
// https://astro.build/config
5-
export default defineConfig({});
8+
export default defineConfig({
9+
vite: {
10+
plugins: [tailwindcss()],
11+
},
12+
13+
integrations: [icon()],
14+
});

0 commit comments

Comments
 (0)