Skip to content

Commit

Permalink
Merge pull request #1738 from davezuko/patch-1
Browse files Browse the repository at this point in the history
Fix "https.passphrase" option being discarded
  • Loading branch information
shakyShane committed Jul 1, 2021
2 parents b8abf44 + 7d5932e commit c2bc05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/browser-sync/lib/server/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function getHttpsServerDefaults(options) {
key: getKey(options),
cert: getCert(options),
ca: getCa(options),
passphrase: ""
passphrase: options.getIn(["https", "passphrase"], "")
});
}

Expand Down

0 comments on commit c2bc05d

Please sign in to comment.