From 62609689e402c9fb3cd5db7172c92ac419fa5a6c Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 7 Jun 2018 16:24:26 +0000 Subject: [PATCH] do not open browsersync when starting --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0e0b3e6..e63f31b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,7 +66,8 @@ gulp.task('default', [ 'html', 'css', 'js' ]) gulp.task('browsersync', ['default'], () => browserSync.init({ - server: "./build" + server: "./build", + open: false }) )