⽣成 HTML

html-webpack-plugin,该插件⽤来创建 HTML ⽂件,创建的 HTML ⽂件默认引⼊打包后的所有资源⽂件 复制 HTML 到打包⽬录、确保 HTML 中的路径正确(例如:HTML 标签中的 src ) 详情查看:https://www.npmjs.com/package/html-webpack-plugin 安装 npm i html-webpack-plugin -D # webpack 5 npm i html-webpack-plugin@4 -D # webpack 4 引入 const HtmlWebpackPlugin = require(‘html-webpack-plugin’) 配置 在 webpack.config.js 的 plugins 插件中添加 HtmlWebpackPlugin plugins: [ new HtmlWebpackPlugin() // 添加这⼀⾏ ] 执⾏命令 webpack 给 HTML 添加配置 plugins: [ // ⽤于⽣成 index.html new HtmlWebpackPlugin(), ]

设置 HTML 模板

plugins: [ // ⽤于⽣成 index.html new HtmlWebpackPlugin({ template: ‘./src/index.html’, // 指定 HTML 的模板 } ] ] 声明模板 <!DOCTYPE html> <html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“<%= htmlWebpackPlugin.options.vi ewport %>”> <meta http-equiv=“X-UA-Compatible” content=“ie=edge”> <title>Demo</title> </head> <body> <div class=“container”> <h1>Hello Webpack</h1> </div> </body> </html>

设置 HTML 配置项

少量配置可以在 HtmlWebpackPlugin 中指定 ⼤量配置建议指定 HTML ⽂件的模板 plugins: [ // ⽤于⽣成 index.html new HtmlWebpackPlugin({ template: ‘./src/index.html’, // 指定 HTML 的模板 title: ‘Webpack Plugin Sample’, // 添加 HTML title meta: { // 添加 HTML mea viewport: ‘width=device-width, initial-scale=1.0’ } }), // ⽤于⽣成 about.html new HtmlWebpackPlugin({ filename: ‘about.html’ // 指定声明的⽂件名,如果有多个模 板,可以实例化多次 }] ]

声明 HTML 模板

<!DOCTYPE html> lang=“en”> charset=“UTF-8”> name=“viewport” content=“<%= htmlWebpackPlugin.options.vi ewport %>”> http-equiv=“X-UA-Compatible” content=“ie=edge”> <%</font><font style="color:#FF0000;">= </font><font style="color:#6F42C1;">htmlWebpackPlugin.options.title %</font><font style="color:#22863A;">></</font><font style="color:#FF0000;">title> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"></</font><font style="color:#FF0000;">head> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"><body> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"><div </font><font style="color:#6F42C1;">class</font><font style="color:#595959;">=</font><font style="color:#669900;">“container”</font><font style="color:#22863A;">> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"><h1><%</font><font style="color:#FF0000;">= </font><font style="color:#6F42C1;">htmlWebpackPlugin.options.title %</font><font style="color:#22863A;">></</font><font style="color:#FF0000;">h1> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"></</font><font style="color:#FF0000;">div> </font> <font style="color:#22863A;"></</font><font style="color:#FF0000;">body> </font><font style="color:#BFBFBF;"></font> <font style="color:#22863A;"></</font><font style="color:#FF0000;">html> </font> <font style="color:#FF0000;"></font> <h3 id="7h4b27"><a name="7h4b27" class="reference-link"></a><span class="header-link octicon octicon-link"></span><font style="color:#262626;">压缩 HTML</font></h3><font style="color:#262626;">除了创建模板⽂件外,htmlWebpackPlugin 还可以通过配置,实现压缩 HTML 的效果 </font> <font style="color:#595959;">plugins: [ </font> <font style="color:#D73A49;">new </font><font style="color:#595959;">CleanWebpackPlugin(), </font> <font style="color:#D73A49;">new </font><font style="color:#595959;">HtmlWebpackPlugin({</font> <font style="color:#005CC5;">template</font><font style="color:#595959;">: </font><font style="color:#669900;">“./src/index.html”</font><font style="color:#595959;">, </font> <font style="color:#005CC5;">title</font><font style="color:#595959;">: </font><font style="color:#669900;">“Webpack Demo666”</font><font style="color:#595959;">, </font> <font style="color:#005CC5;">minify</font><font style="color:#595959;">:{ </font> <font style="color:#005CC5;">removeRedundantAttributes</font><font style="color:#595959;">: </font><font style="color:#990055;">true</font><font style="color:#595959;">, </font><font style="color:#6A737D;">// </font><font style="color:#6A737D;">删除多余的属性 </font> <font style="color:#005CC5;">collapseWhitespace</font><font style="color:#595959;">: </font><font style="color:#990055;">true</font><font style="color:#595959;">, </font><font style="color:#6A737D;">// </font><font style="color:#6A737D;">折叠空⽩区域 </font> <font style="color:#005CC5;">removeAttributeQuotes</font><font style="color:#595959;">: </font><font style="color:#990055;">true</font><font style="color:#595959;">, </font><font style="color:#6A737D;">// </font><font style="color:#6A737D;">移除属性的引号</font> <font style="color:#005CC5;">removeComments</font><font style="color:#595959;">: </font><font style="color:#990055;">true</font><font style="color:#595959;">, </font><font style="color:#6A737D;">// </font><font style="color:#6A737D;">移除注释 </font> <font style="color:#005CC5;">collapseBooleanAttributes</font><font style="color:#595959;">: </font><font style="color:#990055;">true </font><font style="color:#6A737D;">// 省略只有 boolean 值的属性值 例如:readonly checked </font> <font style="color:#6A737D;">}</font> <font style="color:#6A737D;">}),</font> <font style="color:#6A737D;">]</font> <font style="color:#262626;">minify 选项可以配置压缩的内容</font>