本文共 1286 字,大约阅读时间需要 4 分钟。
var htmlWebpackPlugin = require("html-webpack-plugin");module.exports = { entry:{ main:'./src/script/main.js', a:'./src/script/a.js', b:'./src/script/b.js', c:'./src/script/c.js' }, output:{ path:'./dist', filename:'js/[name]-[hash].js', publicPath:'http://cdn.com/' }, plugins:[ new htmlWebpackPlugin({ template:'index.html', filename:'a.html', inject:false, title:'this is a.html', excludeChunks:['b','c'] }), new htmlWebpackPlugin({ template:'index.html', filename:'b.html', inject:false, title:'this is b.html', excludeChunks:['a','c'] }), new htmlWebpackPlugin({ template:'index.html', filename:'c.html', inject:false, title:'this is c.html', excludeChunks:['a','b'] }) ]}
<%= htmlWebpackPlugin.options.title %>
本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1899624
转载地址:http://rqsfx.baihongyu.com/