visionye

Results 4 comments of visionye

解决错误两种方法: 1:webpack.base.config.js `{ test: /\.(html|tpl)$/, loader: 'html-loader' }` 改成 `{ test: /\.(html|tpl|ejs)$/, loader: 'html-loader' }` 2:webpack.dev.config.js `new HtmlWebpackPlugin({ filename: '../index.html', template: './src/template/index.ejs', inject: false })` 注释template: './src/template/index.ejs', 以上两个方法中的一个,然后重新运行项目

@jiangbai333 因为ejs文件解析不了 BabelLoaderError

遇到同样问题.解决了回复下

> 遇到同样问题.解决了回复下 直接引用官方的包也是此类情况= =