Reputation: 1227
I am attempting to open Chrome and Firefox when browser-sync module initializes the web server.
My gulp task has the following:
browserSync.init(null, {
files: config.destination.root + '/**/*',
browser: ["google chrome", "firefox"],
port: config.port,
notify: false,
server: {
baseDir: config.destination.root
},
startPath: config.pocSuffix
}, callback);
My current default is set to IE.
It is still opening only IE. How do i troubleshoot this?
Upvotes: 5
Views: 6986
Reputation: 267
To me it seems that neither "google chrome" nor "firefox" was found in your instance, and that IE then kicked in as the default one.
In my scenario I have a Ubuntu 15.10 minimal install with openbox, and chrome set as default browser. Various configurations and results follows:
Using "chrome" solved it for you. Using "google-chrome" solved it for me.
Mentioning it as an answer, in case someone ends up here by googling the issue.
Upvotes: 5