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‘ }) ] }
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1899587
原文地址:http://suyanzhu.blog.51cto.com/8050189/1899587