disable browsersync notifications and ghosting

Notifications are pretty much useless and annoying when you are developing something that happens to be on the top right corner of your screen.
This commit is contained in:
Riku Rouvila
2015-07-15 14:48:46 +03:00
parent ca8235bc35
commit 5615c019d0

View File

@@ -140,6 +140,8 @@ gulp.task('server', function() {
return browserSync({
open: false,
port: 9001,
notify: false,
ghostMode: false,
server: {
baseDir: config.destination
}