refactor(gateway): share Control UI bootstrap contract and CSP

This commit is contained in:
Peter Steinberger
2026-02-16 03:35:11 +01:00
parent 6e7c1c16e7
commit c6e6023e3a
4 changed files with 42 additions and 18 deletions

View File

@@ -0,0 +1,8 @@
export const CONTROL_UI_BOOTSTRAP_CONFIG_PATH = "/__openclaw/control-ui-config.json";
export type ControlUiBootstrapConfig = {
basePath: string;
assistantName: string;
assistantAvatar: string;
assistantAgentId: string;
};