Remove browser console output "Connected" messages #82
Open
Description
First of all, thank you very much for this excellent package, which allowed me to migrate from browser sync to event dev server. I am using it on CLI, and I would like to ask how to keep the browser console clean? My idea is to provide a configuration option to control it? And whether the browser can automatically open after startup,
import browserSync from 'browser-sync'
const bs = browserSync.create();
bs.init({
notify: false,
port: 3001,
open: true,//like this
})