html-webpack-plugin
作者:互联网
安装: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
标签:index,plugin,webpack,html,htmlWebpackPlugin,页面 来源: https://www.cnblogs.com/sunshinexiu/p/12496948.html