do not open browsersync when starting

master
Simon Bruder 2018-06-07 16:24:26 +00:00
parent 10fe7cfbad
commit 62609689e4
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ gulp.task('default', [ 'html', 'css', 'js' ])
gulp.task('browsersync', ['default'], () =>
browserSync.init({
server: "./build"
server: "./build",
open: false
})
)