Merge pull request #22859 from awanlin/topic/add-config-for-experimentalExtraAllowedOrigins

Added `experimentalExtraAllowedOrigins` to config
This commit is contained in:
Patrik Oldsberg
2024-02-13 12:25:54 +01:00
committed by GitHub
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend': patch
---
Added `experimentalExtraAllowedOrigins` to config
+4
View File
@@ -191,5 +191,9 @@ export interface Config {
*/
backstageTokenExpiration?: HumanDuration;
};
/**
* Additional app origins to allow for authenticating
*/
experimentalExtraAllowedOrigins?: string[];
};
}