//我想通过supervisor + livereload 让后端模板修改页面自动刷新,应该怎么搞?
gulp.task("watch", function() {
livereload({ start: true });
exec("supervisor -e html,js -w server ./server/bin/www");
gulp.watch("server/views/**/*.html", function() {
exec("rs", function() {
livereload();
});
});
gulp.watch("fe/less/**/*.less", function() {
gulp.start("less");
});
})
//现在浏览器无法自动刷新
认证高级PHP讲师