Merge pull request #31838 from karthikjeeyar/mkdocs-patch

feat(techdocs): add app-config option to disable external font download
This commit is contained in:
Andre Wanlin
2026-04-29 12:47:12 -05:00
committed by GitHub
14 changed files with 257 additions and 6 deletions
+8
View File
@@ -76,6 +76,14 @@ export interface Config {
* @see https://www.mkdocs.org/user-guide/configuration/#hooks
*/
dangerouslyAllowAdditionalKeys?: string[];
/**
* Disable external fonts for all TechDocs sites.
* If not set, the default value is false.
* If set to true, the external font will be disabled for all TechDocs sites.
* If set to false, the external font will be enabled for all TechDocs sites.
*/
disableExternalFonts?: boolean;
};
};