Version 2.14.0
Given a config file
module.exports = {
https: {
key: '../server/ssl/server.key',
cert: '../server/ssl/server.crt',
}
};
When I run browser-sync start --config bs-config.js, the options (after merging flags) end up as:
Notice https is false.
It seems that the default https flag overrides my configuration.
Version 2.14.0
Given a config file
When I run
browser-sync start --config bs-config.js, the options (after merging flags) end up as:Notice
httpsisfalse.It seems that the default
httpsflag overrides my configuration.