How in gulp to work with several html files so that autoupdate works on all these files? (browsersync is connected)

    1 answer 1

    gulp.task('browserSync', function() { browserSync.init({ server: { baseDir: 'app' }, }) }) gulp.task('watch', 'browserSync', function(){ gulp.watch("ваш путь к файлам/*.html").on("change", reload); });