update config to be optional

Signed-off-by: Emma Indal <emma.indahl@gmail.com>
This commit is contained in:
Emma Indal
2022-06-23 11:29:16 +02:00
parent 635cd6e9d2
commit 617e5ae30e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ export interface Config {
/**
* Configuration options for the stack overflow plugin
*/
stackoverflow: {
stackoverflow?: {
/**
* The base url of the Stack Overflow API used for the plugin
* @visibility backend
*/
baseUrl: string;
baseUrl?: string;
};
}
+2 -2
View File
@@ -18,11 +18,11 @@ export interface Config {
/**
* Configuration options for the stack overflow plugin
*/
stackoverflow: {
stackoverflow?: {
/**
* The base url of the Stack Overflow API used for the plugin
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
};
}