BrowserSync gulp插件,当视图位于index.html
上时不重新加载浏览器页面,这意味着localhost:3000
gulp.task("browserSync", function () {
browserSync.init({
server: {
baseDir: "./public"
}
});
});
gulp.task("liveReload", [
"browserSync", "copy", "watch"
], function () {
gulp.watch("src/**/*.html", browserSync.reload);
});
仅当URL指向其他.html页面时才重新加载。像:localhost:3000/en/pricing.html
项目结构:
src
index.html
/html
pricing.html
...
公共
index.html
/en
pricing.html
...
/ar
pricing.html
...
我的代码问题是什么?