collabrix/frontend/vite.config.ts
DGSoft a7ff948e7e Beta Release: Complete Kanban system with auto-save, route persistence, and UI improvements
- Added complete Kanban board functionality with drag-and-drop
- Implemented auto-save for Kanban card editing (no more edit button)
- Added route persistence to remember last visited page on reload
- Improved Kanban UI design with slimmer borders and compact layout
- Added checklist functionality for Kanban cards
- Enhanced file upload and direct messaging features
- Improved authentication and user management
- Added toast notifications system
- Various UI/UX improvements and bug fixes
2025-12-10 23:17:07 +01:00

28 lines
571 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 80,
allowedHosts: [
'collabrix.apex-project.de',
'192.168.0.12',
'localhost'
],
// HMR komplett deaktivieren - nicht kompatibel mit Reverse Proxy
hmr: false,
proxy: {
'/api': {
target: 'http://192.168.0.12:8000',
changeOrigin: true,
},
'/ws': {
target: 'ws://192.168.0.12:8000',
ws: true,
}
}
}
})