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']
}
]
},
相关分类