added tailwind to imports

This commit is contained in:
2026-05-09 22:54:16 +02:00
parent c50ca3f78e
commit 8cbc39ed98
17 changed files with 572 additions and 114 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
import { defineConfig } from 'vite'
import react, { reactCompilerPreset } from '@vitejs/plugin-react'
import babel from '@rolldown/plugin-babel'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
babel({ presets: [reactCompilerPreset()] })
babel({ presets: [reactCompilerPreset(), tailwindcss()] })
],
})