Merge pull request #29472 from jpbottinelli/kubecon
make certificate strings optional for Dev environments
This commit is contained in:
@@ -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'),
|
||||
},
|
||||
}
|
||||
: {},
|
||||
|
||||
Reference in New Issue
Block a user