webpack5(四)-- html

发布日期:2020-10-11 阅读量:1026

1. 下载安装依赖

    npm i html-webpack-plugin -D

2. 引入

    const HtmlWebpackPlugin = require('html-webpack-plugin');

    module.exports = {
      plugins: [new HtmlWebpackPlugin({
          template: '指定模板,否则打包生成的html会重置结构'
      })],
    };