今回は、webpack プラグイン html-webpack-plugin の使用方法について詳しく説明します。 webpack プラグイン html-webpack-plugin を使用する際の 注意事項 は何ですか?実際の事例を紹介します。見てください。
このプラグインは、特にファイル名にハッシュ値が含まれており、この値がコンパイルされるたびに変化する場合に、Webpack バンドルを提供する HTML ファイルの作成を簡素化するために使用されます。このプラグインを使用して HTML ファイルを自動的に生成することも、lodash テンプレートを使用して生成されたバンドルをロードすることも、バンドルを自分でロードすることもできます。インストール
npmを使用してこのプラグインをインストールします$ npm install html-webpack-plugin@2 --save-dev
基本的な使用法
このプラグインは、body要素でHTMLファイルを生成し、スクリプトを使用してWebpackにすべてのWebpackバンドルを含めるのに役立ちます設定ファイル次の設定:
var HtmlWebpackPlugin = require('html-webpack-plugin') var webpackConfig = { entry: 'index.js', output: { path: 'dist', filename: 'index_bundle.js' }, plugins: [new HtmlWebpackPlugin()] }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Webpack App</title> </head> <body> <script src="index_bundle.js"></script> </body> </html>
Configuration
は一連の設定を実行でき、次の設定情報をサポートしますエラー メッセージ が HTML ページに書き込まれます。
単体テストをスキップするブロック)
{ entry: 'index.js', output: { path: 'dist', filename: 'index_bundle.js', hash: true }, plugins: [ new HtmlWebpackPlugin({ title: 'My App', filename: 'assets/admin.html' }) ] }
複数の HTML ファイルを生成する
このプラグインを設定ファイルに複数回追加することで、複数の HTML ファイルを生成します。{ entry: 'index.js', output: { path: 'dist', filename: 'index_bundle.js' }, plugins: [ new HtmlWebpackPlugin(), // Generates default index.html new HtmlWebpackPlugin({ // Also generate a test.html filename: 'test.html', template: 'src/assets/test.html' }) ] }
カスタム テンプレートを作成する
デフォルトで生成された HTML ファイルがニーズに合わない場合は、独自のカスタマイズされたテンプレートを作成できます。便利な方法は、inject オプションを渡してから、それをカスタム HTML ファイルに渡すことです。 html-webpack-plugin は、必要なすべての CSS、js、マニフェスト、および favicon ファイルをマークアップに自動的に挿入します。plugins: [ new HtmlWebpackPlugin({ title: 'Custom template', template: 'my-index.html', // Load a custom template inject: 'body' // Inject all scripts into the body }) ]
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> <title><%= htmlWebpackPlugin.options.title %></title> </head> <body> </body> </html>
module: { loaders: [ { test: /\.hbs$/, loader: "handlebars" } ] }, plugins: [ new HtmlWebpackPlugin({ title: 'Custom template using Handlebars', template: 'my-index.hbs', inject: 'body' }) ]
string の場合、templateContent を使用してそれを渡すことができます。
plugins: [ new HtmlWebpackPlugin({ inject: true, templateContent: templateContentString }) ]
如果 inject 特性不适合你的需要,你希望完全控制资源放置。 可以直接使用 lodash 语法,使用 default template 作为起点创建自己的模板。
templateContent 选项也可以是一个函数,以便使用其它语言,比如 jade:
plugins: [ new HtmlWebpackPlugin({ templateContent: function(templateParams, compilation) { // Return your template content synchronously here return '..'; } }) ]
或者异步版本
plugins: [ new HtmlWebpackPlugin({ templateContent: function(templateParams, compilation, callback) { // Return your template content asynchronously here callback(null, '..'); } }) ]
注意,如果同时使用 template 和 templateContent ,插件会抛出错误。
变量 o 在模板中是在渲染时传递进来的数据,这个变量有如下的属性:
1、htmlWebpackPlugin: 这个插件的相关数据 ◦
htmlWebpackPlugin.files: 资源的块名,来自 webpack 的 stats 对象,包含来自 entry 的从 entry point name 到 bundle 文件名映射。
"htmlWebpackPlugin": { "files": { "css": [ "main.css" ], "js": [ "assets/head_bundle.js", "assets/main_bundle.js"], "chunks": { "head": { "entry": "assets/head_bundle.js", "css": [ "main.css" ] }, "main": { "entry": "assets/main_bundle.js", "css": [] }, } } }
如果在 webpack 配置文件中,你配置了 publicPath,将会反射正确的资源
htmlWebpackPlugin.options: 传递给插件的配置。
2、webpack: webpack 的 stats 对象。
3、webpackConfig: webpack 配置信息。
过滤块
可以使用 chunks 来限定特定的块。
plugins: [ new HtmlWebpackPlugin({ chunks: ['app'] }) ]
还可以使用 excludeChunks 来排除特定块。
plugins: [ new HtmlWebpackPlugin({ excludeChunks: ['dev-helper'] }) ]
事件
通过事件允许其它插件来扩展 HTML。
html-webpack-plugin-before-html-processing
html-webpack-plugin-after-html-processing
html-webpack-plugin-after-emit
使用方式:
compilation.plugin('html-webpack-plugin-before-html-processing', function(htmlPluginData, callback) { htmlPluginData.html += 'The magic footer'; callback(); });
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上がwebpackプラグインの使い方の詳しい説明 html-webpack-pluginの例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。