安装:cnpm install html-webpack-plugin -D
使用:在webpack.config.js文件里面添加配置:
const htmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
plugins: [
new htmlWebpackPlugin({
template: path.join(__dirname, './src/index.html'),
filename: 'index.html'
})
]
}
作用:
- 在内存中生成index.html页面
- 自动在index.html页面引入bundle