Hello I try to create my own config. and its much working well but some times i when i change html code live reload is not working dont know why. Any one can help with that?
var livereload = require('gulp-livereload');
gulp.task('reload-html',function(){
gulp.src('./*.html')
.pipe(livereload())
.pipe(notify({ message: 'Reload html task complete' }));
});
gulp.task('watch-files',function(){
livereload.listen();
gulp.watch('*.html',['reload-html'])
gulp.watch('assets/sass/**/*.scss',['sass']);
gulp.watch('assets/images/src/**/*',['images-min']);
});
Also I use live reload plugin for google chrome.