欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

webpack5打包单个html文件以及打包多个html文件

程序员文章站 2022-05-30 18:17:11
...

打包html方法

  • 使用插件(plugins)对HTML文件进行处理(html-webpack-plugin)
  • 下载安装 npm i html-webpack-plugin -D
  • 引入插件 const HtmlWebpackPlugin = require(‘html-webpack-plugin’)
  • 使用插件
 plugins: [
        // 调用插件
        new HtmlWebpackPlugin({
            //创建一个新的html文件,自动引入打包输出的所有资源(js/css)
            template:'./src/index.html',
            //文件位置与名称
            filename:'./html/index.html',
            //指定引入js文件
            chunks:['index'],
            //压缩处理
            minify:{  
                //压缩空格
                collapseWhitespace:true,
                //移出注释
                removeComments:true
            } 
        })
    ] 

打包多个html


```javascript
* plugins: [
        new HtmlWebpackPlugin({
            template:'./src/index.html',
            filename:'./html/index.html',
            chunks:['index'],
            minify:{ 
                collapseWhitespace:true,
                removeComments:true
            } 
        }),
        new HtmlWebpackPlugin({
            template:'./src/about.html',
            filename:'./html/about.html',
            chunks:['about'],
            minify:{ 
                collapseWhitespace:true,
                removeComments:true
            } 
        }),
 ]