How do we define the browser for gulp browserSync. I am on ubuntu 16.04, I have chrome, firefox and firefox developer edition installed on my machine and I want gulp browserSync to open firefox developer edition. How can I do that? Here is my configuration :
function startBrowserSync() {
options = {
browser: 'FirefoxDeveloperEdition',
proxy: 'localhost:' + port,
port: 3000,
files: [],
ghostMode: {
clicks: true,
location: false,
forms: true,
scroll: true
},
injectChanges: true,
logFileChanges: true,
logLevel: 'debug',
logPrefix: 'gulp-patterns',
notify: true,
reloadDelay: 0
};
browserSync(options);