From 312ed7f04d73b2543d0e6822a0d7af51081550a6 Mon Sep 17 00:00:00 2001 From: CaptV0rt3x Date: Sun, 17 Mar 2019 11:59:25 +0530 Subject: [PATCH] Fix BrowserSync Error --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8f0a67e..0a64e96 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -97,7 +97,7 @@ gulp.task('final:serve', function(done) { gulp.watch('site/**/*.html', gulp.series('hugo')); gulp.watch('site/**/*.md', gulp.series('hugo')); - gulp.watch('build/**/*').on('change', function() { + gulp.watch('build/**/*').on('change', function(x) { browserSync.reload(x); });