Initial push

This commit is contained in:
2026-08-11 09:00:01 +02:00
commit fe8b354adc
54 changed files with 12640 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// The build output goes straight into the Go package that embeds it, so
// `go build` always picks up the latest UI.
export default defineConfig({
plugins: [react()],
build: {
outDir: '../internal/webui/dist',
emptyOutDir: true,
chunkSizeWarningLimit: 900,
},
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
},
},
},
})