Update runtime config comment
cgen-288433ec59c643858cdae70157e16a76
This commit is contained in:
parent
2a94352d3d
commit
b6283d51d4
1 changed files with 2 additions and 3 deletions
|
|
@ -177,9 +177,8 @@ const SKIP_AGENT_ROOT_SELECTORS = [
|
||||||
|
|
||||||
let shouldEnableSkipAgent = false;
|
let shouldEnableSkipAgent = false;
|
||||||
|
|
||||||
// Allow consumers to override the agent configuration at runtime. If a consumer does not explicitly opt in,
|
// Allow operators to override the agent configuration at runtime when needed.
|
||||||
// the loader will remain disabled and no external runtime requests will be made.
|
// Example override (console): window.__AETHEX_SKIP_AGENT_CONFIG = { src: 'https://example.com/agent.js', id: '...' };
|
||||||
// Example opt-in (console): window.__AETHEX_SKIP_AGENT_CONFIG = { src: 'https://example.com/agent.js', id: '...' };
|
|
||||||
const getRuntimeConfig = () => {
|
const getRuntimeConfig = () => {
|
||||||
try {
|
try {
|
||||||
if (typeof window !== "undefined" && (window as any).__AETHEX_SKIP_AGENT_CONFIG) {
|
if (typeof window !== "undefined" && (window as any).__AETHEX_SKIP_AGENT_CONFIG) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue