citra-emu
/
citra-web
Archived
1
0
Fork 0

Merge pull request #98 from CaptV0rt3x/fix

Fix BrowserSync Error
This commit is contained in:
Flame Sage 2019-03-17 12:44:10 -04:00 committed by GitHub
commit a60a9f122e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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