From 2f71c51942feb0dd135a8a302cc67992b78f9416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udia?= Date: Thu, 16 Jul 2026 10:45:50 +0100 Subject: [PATCH] fix: disable navigation.instant to stop unstyled pages on in-site navigation navigation.instant swaps via XHR instead of doing a full page load, so the theme's custom scripts and third-party embeds (docs-theme.js, CookieYes, Zendesk) that initialize on DOMContentLoaded never re-run on navigation, leaving navigated pages unstyled until a manual refresh. Reverting to full page loads until the customizations are made instant-safe (re-init on Material's document$ observable). Co-Authored-By: Claude Opus 4.8 --- mkdocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index b17149ce15..ec74385e82 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -38,7 +38,6 @@ theme: - "search.suggest" - "content.code.copy" - "content.tabs.link" - - "navigation.instant" - "navigation.path" extra_css: - "stylesheets/fonts.css"