installed tailwind css

This commit is contained in:
2025-08-11 12:23:31 +02:00
parent 1356775e07
commit cb5df58a37
7 changed files with 1125 additions and 246 deletions

View File

@@ -1,7 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import svgr from "vite-plugin-svgr";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), svgr(), tailwindcss()],
server: {
host: "0.0.0.0",
port: 5001,
watch: {
usePolling: true,
},
},
});