Issues git resolved

This commit is contained in:
2026-04-20 19:29:21 +02:00
parent 16498f564d
commit 16764fc335
37 changed files with 2340 additions and 715 deletions

View File

@@ -4,12 +4,18 @@ import react from '@vitejs/plugin-react';
export default defineConfig(() => {
return {
server: {
port: 3012,
host: '0.0.0.0',
hmr: {
clientPort: 3012,
},
server: {
port: 3012,
host: '0.0.0.0',
proxy: {
'/api': {
target: 'http://127.0.0.1:3013',
changeOrigin: false,
},
},
hmr: {
clientPort: 3012,
},
watch: {
usePolling: true,
},