diff --git a/scripts/e2e/onboard-docker.sh b/scripts/e2e/onboard-docker.sh index bdfb0ca6b3e..0f7a894e394 100755 --- a/scripts/e2e/onboard-docker.sh +++ b/scripts/e2e/onboard-docker.sh @@ -409,6 +409,7 @@ NODE # Seed a remote config to exercise reset path. cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"' { + "meta": {}, "agents": { "defaults": { "workspace": "/root/old" } }, "gateway": { "mode": "remote", @@ -504,6 +505,7 @@ NODE # Seed skills config to ensure it survives the wizard. cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"' { + "meta": {}, "skills": { "allowBundled": ["__none__"], "install": { "nodeManager": "bun" } diff --git a/ui/vite.config.ts b/ui/vite.config.ts index 161cb9dae3b..1f34fb313cd 100644 --- a/ui/vite.config.ts +++ b/ui/vite.config.ts @@ -31,6 +31,8 @@ export default defineConfig(() => { outDir: path.resolve(here, "../dist/control-ui"), emptyOutDir: true, sourcemap: true, + // Keep CI/onboard logs clean; current control UI chunking is intentionally above 500 kB. + chunkSizeWarningLimit: 1024, }, server: { host: true,