changed ports and networking for new react frontend

This commit is contained in:
2025-07-23 12:10:29 +02:00
parent d552f40c2d
commit 584473ba41
7 changed files with 4088 additions and 229 deletions

View File

@@ -1,7 +1,16 @@
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: 5003,
watch: {
usePolling: true,
},
},
});