Merge pull request #29472 from jpbottinelli/kubecon

make certificate strings optional for Dev environments
This commit is contained in:
Fredrik Adelöw
2025-04-04 20:19:27 +02:00
committed by GitHub
2 changed files with 9 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
make certificate strings optional for Dev environments
@@ -195,8 +195,10 @@ DEPRECATION WARNING: React Router Beta is deprecated and support for it will be
? {
type: 'https',
options: {
cert: fullConfig.getString('app.https.certificate.cert'),
key: fullConfig.getString('app.https.certificate.key'),
cert: fullConfig.getOptionalString(
'app.https.certificate.cert',
),
key: fullConfig.getOptionalString('app.https.certificate.key'),
},
}
: {},