const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
index: './index.js',
index2: './index2.js'
},
output: {
filename: '[name].bundle.js'
},
plugins: [
new HtmlWebpackPlugin({
chunks: ['index'],
hash: true,
filename: 'index.html',
template: './index.html',
title: '你好世界!'
}),
new HtmlWebpackPlugin({
chunks: ['index2'],
hash: true,
filename: 'index2.html',
template: './index.html',
title: '你好世界2!'
}),
]
}