From 5615c019d0284f37f8ec3d9f8dffd5a7942b5f56 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Wed, 15 Jul 2015 14:48:46 +0300 Subject: [PATCH] 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. --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index bc7c33d..5e4c791 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -140,6 +140,8 @@ gulp.task('server', function() { return browserSync({ open: false, port: 9001, + notify: false, + ghostMode: false, server: { baseDir: config.destination }