Harden worker federation and operator UI

This commit is contained in:
2026-07-29 13:30:55 +04:00
parent 95a96d87a5
commit 1ca9d64e89
35 changed files with 1195 additions and 581 deletions
+3 -1
View File
@@ -2,6 +2,8 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins:[react()],
build:{outDir:'dist', emptyOutDir:true},
// The Go API embeds this directory. Building anywhere else makes it easy
// to test fresh browser sources while deploying a stale embedded bundle.
build:{outDir:'../internal/webui/assets', emptyOutDir:true},
test:{exclude:['**/node_modules/**','**/.node_modules/**','**/dist/**']},
})