Etappe 5: API + Auth + WebUI — Erste Implementierung

- React-UI: Dashboard mit Stats, Geräte, Jobs
- API: /jobs und /devices endpoints
- CORS aktiviert für UI-Kommunikation
This commit is contained in:
Hitonabi
2026-07-21 16:52:30 +02:00
parent e62ff83e17
commit 4d1f613a1c
10 changed files with 405 additions and 9 deletions
+7 -6
View File
@@ -1,13 +1,14 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
root: './',
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173
},
build: {
outDir: 'dist',
assetsDir: 'assets'
},
server: {
port: 80,
host: true
sourcemap: false
}
})