Fix BrowserSync Error

This commit is contained in:
CaptV0rt3x 2019-03-17 11:59:25 +05:30
parent 41b0edf0e4
commit 312ed7f04d

View File

@ -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);
});