feat(techdocs): add app-config option to disable external font download

Signed-off-by: Karthik <karthik.jk11@gmail.com>
This commit is contained in:
Karthik
2025-11-21 10:26:20 +05:30
parent 292b6431a2
commit 5ef8d166cb
7 changed files with 188 additions and 2 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;
};
};