diff --git a/client/lib/skip-agent.ts b/client/lib/skip-agent.ts index 7f192969..f7174d23 100644 --- a/client/lib/skip-agent.ts +++ b/client/lib/skip-agent.ts @@ -348,6 +348,11 @@ const loadSkipAgent = async (): Promise => { return; } + if (isDocsPath()) { + // Prevent any network activity from documentation routes + return; + } + if (typeof window === "undefined" || typeof document === "undefined") { return; }