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