From de79af10161814ec3ec78953904cd708edd74ae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Gr=C3=B8ndahl?= Date: Thu, 30 Apr 2026 18:04:43 +0200 Subject: [PATCH] fix: whitelist docs.kosli.com and mintlify.app in Termly blocking map The auto-blocker was intercepting Mintlify's own Next.js prefetch requests and chunk loads, causing RSC payload failures and ChunkLoadErrors. Adding docs.kosli.com and mintlify.app as essential prevents the auto-blocker from interfering with the site's framework. --- termly.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/termly.js b/termly.js index 800a1ee..c29ff08 100644 --- a/termly.js +++ b/termly.js @@ -10,7 +10,9 @@ window.__kosliTermlyLoaded = true; window.TERMLY_CUSTOM_BLOCKING_MAP = { - "kosli.com": "essential" + "kosli.com": "essential", + "docs.kosli.com": "essential", + "mintlify.app": "essential" }; function syncConsent(data) {