我目前正在使用内置了livereload的grunt-contrib-watch。但是,查看source code,它似乎比LiveReload的livereload-js简化得多,其中包括额外的功能,如实时css /图像重新加载(而不是重新加载整个页面)
是否可以在繁重的任务中获取这些功能?
答案 0 :(得分:1)
watch: {
scripts: {
files: [ 'js/*.js' ],
options: {
livereload: true
}
},
html: {
files:['index.html', 'stylesheets/*.css'],
options: {
livereload: true
}
}
}
是否需要进行所有设置。