This commit is contained in:
seb
2026-07-07 18:09:52 +02:00
commit e0cacf6004
16 changed files with 4569 additions and 0 deletions

10
dashboard/vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 20080,
proxy: { '/api': 'http://localhost:20081' },
},
});