feat: support custom default plugins for techdocs

Signed-off-by: Dominik Schwank <dominik.schwank@sda.se>
This commit is contained in:
Dominik Schwank
2023-07-17 16:23:14 +02:00
parent dcd7e1622c
commit 10a86bd4ae
8 changed files with 102 additions and 14 deletions
+5
View File
@@ -57,6 +57,11 @@ export interface Config {
* will be broken in these scenarios.
*/
legacyCopyReadmeMdToIndexMd?: boolean;
/**
* List of mkdocs plugins which should be added as default to all mkdocs.yml files.
*/
defaultPlugins?: string[];
};
};