Skip to content

Commit 816a3ba

Browse files
committed
feat(config): make roots config key optional to avoid unnecessary startup requirements
1 parent e1a3fb0 commit 816a3ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plugins/search-backend-module-stack-overflow-teams-collator/config.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export interface Config {
1818
/**
1919
* Configuration options for the stack overflow plugin
2020
*/
21-
stackoverflow: {
21+
stackoverflow?: {
2222
/**
2323
* The base url of the Stack Overflow API used for the plugin, if no BaseUrl is provided it will default to https://api.stackoverflowteams.com
2424
*/

plugins/stack-overflow-teams-backend/config.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export interface Config {
2020
*
2121
* This configuration is shared with the backstage-plugin-stack-overflow-teams-backend and backstage-stack-overflow-teams-collator
2222
*/
23-
stackoverflow: {
23+
stackoverflow?: {
2424
/**
2525
* The base url of the Stack Overflow API used for the plugin
2626
*/

plugins/stack-overflow-teams/config.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export interface Config {
2020
*
2121
* This configuration is shared with the backstage-plugin-stack-overflow-teams-backend and backstage-stack-overflow-teams-collator
2222
*/
23-
stackoverflow: {
23+
stackoverflow?: {
2424
/**
2525
* The base url of the Stack Overflow API used for the plugin
2626
*/

0 commit comments

Comments
 (0)