Merge pull request #11065 from anicke/techdocs-staticdir

[TechDocs] Added configuration for local publishing target
This commit is contained in:
Camila Belo
2022-06-23 16:54:42 +02:00
committed by GitHub
6 changed files with 82 additions and 25 deletions
+7
View File
@@ -66,6 +66,13 @@ export interface Config {
publisher?:
| {
type: 'local';
local?: {
/**
* Directory to store generated static files.
*/
publishDirectory?: string;
};
}
| {
type: 'awsS3';