From 1e03595e08608bbb8084c549c2ab91993e035bf1 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Wed, 4 Mar 2026 16:06:05 +0000 Subject: Add Tailwind CSS integration and update dependencies --- vite.config.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vite.config.ts') diff --git a/vite.config.ts b/vite.config.ts index 4efe189..149038b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,5 +1,6 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' +import tailwindcss from '@tailwindcss/vite' // https://vite.dev/config/ export default defineConfig({ @@ -9,5 +10,6 @@ export default defineConfig({ plugins: [['babel-plugin-react-compiler']], }, }), + tailwindcss(), ], }) -- cgit