user7522621
user7522621

Reputation:

browsersync can't open multiple browsers

In my Gulpfile.js in serve task, the option browser: ['Google Chrome','Internet Explorer'] doesn't work; it only opens google chrome, not the internet explorer. Was I just wrong in using that option?

Upvotes: 1

Views: 506

Answers (2)

Srujan Bangaru
Srujan Bangaru

Reputation: 341

Try just "explorer" or just "chrome" buddy. This worked for me. In default-config.js use this - browser: ["chrome", "firefox", "explorer"]

Upvotes: 0

Adam McKenna
Adam McKenna

Reputation: 2445

According to the docs, you need to set it like:

// Open the site in Chrome & Firefox
browser: ["google chrome", "firefox"]

Try using lower case.

Upvotes: 0

Related Questions