Skip to content

Commit c2bc05d

Browse files
authored
Merge pull request #1738 from davezuko/patch-1
Fix "https.passphrase" option being discarded
2 parents b8abf44 + 7d5932e commit c2bc05d

File tree

1 file changed

+1
-1
lines changed
  • packages/browser-sync/lib/server

1 file changed

+1
-1
lines changed

packages/browser-sync/lib/server/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function getHttpsServerDefaults(options) {
5454
key: getKey(options),
5555
cert: getCert(options),
5656
ca: getCa(options),
57-
passphrase: ""
57+
passphrase: options.getIn(["https", "passphrase"], "")
5858
});
5959
}
6060

0 commit comments

Comments
 (0)