gulp.task('ejs', () => {
return gulp.src(["./src/views_ejs/**/*.ejs", "!./src/views_ejs/public/*.ejs"])
.pipe(plumber())
//.pipe(ejs({ text: 1 }, {},{ ext: '.html' }))//ejs(三个参数)
.pipe(ejs({},{}, { ext: '.html' }))
.pipe(gulp.dest("./src/views/"))
});
这是配置文件,编译后没有报错,就是没有html文件出现。
墨色风雨
相关分类