mods in gulpfile so `npm start` will track all .scss files inside `assets/scss`

This commit is contained in:
jorge 2021-07-15 17:36:47 +02:00
parent 6f77deb6ed
commit 4d6e898e74
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ function serve() {
});
gulp.watch("asset/scss/*.scss", sass);
gulp.watch("asset/scss/*/*.scss", sass);
gulp.watch("*.html").on('change', browserSync.reload);
}