浏览器与ejs同步,代理只是加载

时间:2016-05-09 08:52:21

标签: node.js gulp ejs browser-sync

我正在尝试让我的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包,但文档不存在,我不知道如何使用它。

0 个答案:

没有答案