mirror of
https://github.com/OHV-IT/collabrix.git
synced 2025-12-15 16:48:36 +01:00
- 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
28 lines
571 B
TypeScript
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,
|
|
}
|
|
}
|
|
}
|
|
})
|