Initial commit

This commit is contained in:
2026-07-09 00:14:45 +02:00
commit 0c2ec3fc1c
100 changed files with 47687 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
strictPort: true,
allowedHosts: true,
hmr: {
overlay: false,
},
watch: {
usePolling: true,
interval: 120,
awaitWriteFinish: {
stabilityThreshold: 260,
pollInterval: 80,
},
},
proxy: {
'/api': {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
},
},
},
preview: {
host: '0.0.0.0',
port: 4173,
strictPort: true,
allowedHosts: true,
},
});