added tailwindcss

This commit is contained in:
2025-08-12 12:25:46 +02:00
parent 500953f9ad
commit bfa70ef14e
11 changed files with 1281 additions and 253 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: 8001,
watch: {
usePolling: true,
},
},
});