From b6283d51d49f4827f1df23faa3ce96fc4f1ebd13 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 01:51:42 +0000 Subject: [PATCH] Update runtime config comment cgen-288433ec59c643858cdae70157e16a76 --- client/lib/skip-agent.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/lib/skip-agent.ts b/client/lib/skip-agent.ts index 18ab8317..8c9aa47f 100644 --- a/client/lib/skip-agent.ts +++ b/client/lib/skip-agent.ts @@ -177,9 +177,8 @@ const SKIP_AGENT_ROOT_SELECTORS = [ let shouldEnableSkipAgent = false; -// Allow consumers to override the agent configuration at runtime. If a consumer does not explicitly opt in, -// the loader will remain disabled and no external runtime requests will be made. -// Example opt-in (console): window.__AETHEX_SKIP_AGENT_CONFIG = { src: 'https://example.com/agent.js', id: '...' }; +// Allow operators to override the agent configuration at runtime when needed. +// Example override (console): window.__AETHEX_SKIP_AGENT_CONFIG = { src: 'https://example.com/agent.js', id: '...' }; const getRuntimeConfig = () => { try { if (typeof window !== "undefined" && (window as any).__AETHEX_SKIP_AGENT_CONFIG) {