make certificate strings optional for Dev environments
Signed-off-by: Juan Pablo Bottinelli Ortiz <jportiz@medallia.com>
This commit is contained in:
@@ -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