我正在尝试让我的MEAN应用程序与浏览器同步一起使用。
我使用.ejs
文件作为模板,但每当我点击打开index.ejs
文件时,它都会下载它。
我在gulpfile中尝试了这两个设置,但都没有。
//this downloads the ejs file
gulp.task('serve', function () {
browsersync.init({
server: {
baseDir: [''],
directory: true
}
});
});
//this just loads and I can't access localhost
gulp.task('serve', function () {
browsersync.init({
proxy: 'http://localhost:3000'
});
});
有一个名为browser-sync-ejs
的npm包,但文档不存在,我不知道如何使用它。