We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5075356 commit cd1a8edCopy full SHA for cd1a8ed
lib/smooth-server.js
@@ -22,8 +22,8 @@ module.exports = class SmoothServer {
22
initOptions() {
23
let argv = minimist(process.argv.slice(2));
24
let configFile = argv.c || argv.config || 'browser-sync.config.json'; // browserSync configs options https://www.browsersync.io/docs/options
25
- console.log(configFile);
26
this.overrides = {}
+
27
try {
28
this.overrides = require(path.resolve(configFile));
29
console.log(this.overrides);
@@ -36,3 +36,4 @@ module.exports = class SmoothServer {
36
}
37
38
39
0 commit comments