chore: silence onboard warning noise

This commit is contained in:
Peter Steinberger
2026-02-26 22:47:28 +01:00
parent 10c7ae1eca
commit cb917b7f05
2 changed files with 4 additions and 0 deletions

View File

@@ -409,6 +409,7 @@ NODE
# Seed a remote config to exercise reset path. # Seed a remote config to exercise reset path.
cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"' cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"'
{ {
"meta": {},
"agents": { "defaults": { "workspace": "/root/old" } }, "agents": { "defaults": { "workspace": "/root/old" } },
"gateway": { "gateway": {
"mode": "remote", "mode": "remote",
@@ -504,6 +505,7 @@ NODE
# Seed skills config to ensure it survives the wizard. # Seed skills config to ensure it survives the wizard.
cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"' cat > "$HOME/.openclaw/openclaw.json" <<'"'"'JSON'"'"'
{ {
"meta": {},
"skills": { "skills": {
"allowBundled": ["__none__"], "allowBundled": ["__none__"],
"install": { "nodeManager": "bun" } "install": { "nodeManager": "bun" }

View File

@@ -31,6 +31,8 @@ export default defineConfig(() => {
outDir: path.resolve(here, "../dist/control-ui"), outDir: path.resolve(here, "../dist/control-ui"),
emptyOutDir: true, emptyOutDir: true,
sourcemap: true, sourcemap: true,
// Keep CI/onboard logs clean; current control UI chunking is intentionally above 500 kB.
chunkSizeWarningLimit: 1024,
}, },
server: { server: {
host: true, host: true,