<%=compilation.assets[htmlWebpackPlugin.files.chunks.index.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %>我的要chunks指定有main才行,不然就报错
new htmlWebpackPlugin({ filename:"a.html",
template:"index.html",
title:"this is page a",
chunks:["a","main"], }),
new htmlWebpackPlugin({ filename:"a.html",
template:"index.html",
title:"this is page a",
chunks:["a","main"], }),
2017-02-22