美文网首页
Webpack06-html打包插件html-webpack-p

Webpack06-html打包插件html-webpack-p

作者: 微小码 | 来源:发表于2019-06-05 17:41 被阅读0次

1、安装

在webpack4之前,默认集成该插件,无需安装
在webpack4之后,需要独立安装

npm install html-webpack-plugin --s -d

2、配置

    plugins: [ 
        new htmlPlugin({
            minify: {
                removeAttributeQuotes: true
            },
            hash: true,
            template: './src/index.html'
        })
    ],
image.png

相关文章

网友评论

      本文标题:Webpack06-html打包插件html-webpack-p

      本文链接:https://www.haomeiwen.com/subject/nupsxctx.html