changed infos and added some more packages

This commit is contained in:
2025-08-28 21:35:49 +02:00
parent 7be418ad75
commit 7b36514e27
8 changed files with 1433 additions and 274 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: 8003,
watch: {
usePolling: true,
},
},
});