1.使用了html-loader来加载代码片段2.用html-withimg-loader 来打包html 里的Img但是这两个loader 要冲突正确加载片段 图片地址就不能正确打包正确打包图片,html片段就不能加载 <%= require('html-loader!./layout/html-head.html') %>module: { loaders: [ { test: /\.css$/, use: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) }, { test: /\.(gif|png|jpg|woff|svg|eot|ttf)\??.*$/, use: 'url-loader?limit=100&name=resource/[name].[ext]' }, { test: /\.(htm|html)$/i, use: ['html-withimg-loader'] } ] },
添加回答
举报
0/150
提交
取消