91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在webpack中使用html-webpack-plugin插件

發布時間:2021-03-29 15:37:41 來源:億速云 閱讀:580 作者:Leah 欄目:web開發

這篇文章給大家介紹如何在webpack中使用html-webpack-plugin插件,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Installation

使用 npm 安裝這個插件

$ npm install html-webpack-plugin@2 --save-dev

Basic Usage

這個插件可以幫助生成 HTML 文件,在 body 元素中,使用 script 來包含所有你的 webpack bundles,只需要在你的 webpack 配置文件中如下配置:

var HtmlWebpackPlugin = require('html-webpack-plugin')
var webpackConfig = {
 entry: 'index.js',
 output: {
  path: 'dist',
  filename: 'index_bundle.js'
 },
 plugins: [new HtmlWebpackPlugin()]
}

這將會自動在 dist 目錄中生成一個名為 index.html 的文件,內容如下:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>Webpack App</title>
 </head>
 <body>
  <script src="index_bundle.js"></script> 
 </body>
</html>

如果你有多個 webpack 入口點,它們都會被包含在生成的 script 元素中。

如果有任何的 CSS 資源包含在 webpack 輸出中(例如,使用 ExtractTextPlugin 提煉出的 css ),這些將會使用 link 包含在 HTML 頁面的 head 元素中。

Configuration

 可以進行一系列的配置,支持如下的配置信息

  1. title: 用來生成頁面的 title 元素

  2. filename: 輸出的 HTML 文件名,默認是 index.html, 也可以直接配置帶有子目錄。

  3. template: 模板文件路徑,支持加載器,比如 html!./index.html

  4. inject: true | 'head' | 'body' | false  ,注入所有的資源到特定的 template 或者 templateContent 中,如果設置為 true 或者 body,所有的 javascript 資源將被放置到 body 元素的底部,'head' 將放置到 head 元素中。

  5. favicon: 添加特定的 favicon 路徑到輸出的 HTML 文件中。

  6. minify: {} | false , 傳遞 html-minifier 選項給 minify 輸出

  7. hash: true | false, 如果為 true, 將添加一個唯一的 webpack 編譯 hash 到所有包含的腳本和 CSS 文件,對于解除 cache 很有用。

  8. cache: true | false,如果為 true, 這是默認值,僅僅在文件修改之后才會發布文件。

  9. showErrors: true | false, 如果為 true, 這是默認值,錯誤信息會寫入到 HTML 頁面中

  10. chunks: 允許只添加某些塊 (比如,僅僅 unit test 塊)

  11. chunksSortMode: 允許控制塊在添加到頁面之前的排序方式,支持的值:'none' | 'default' | {function}-default:'auto'

  12. excludeChunks: 允許跳過某些塊,(比如,跳過單元測試的塊)

下面的示例演示了如何使用這些配置。

{
 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, manifest 和 favicon 文件到標記中。

plugins: [
 new HtmlWebpackPlugin({
  title: 'Custom template',
  template: 'my-index.html', // Load a custom template 
  inject: 'body' // Inject all scripts into the body 
 })
]

my-index.html 文件

<!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'
 })
]

另外,如果你的模式是一個字符串,可以使用 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。

  1. html-webpack-plugin-before-html-processing

  2. html-webpack-plugin-after-html-processing

  3. html-webpack-plugin-after-emit

使用方式:

compilation.plugin('html-webpack-plugin-before-html-processing', function(htmlPluginData, callback) {
 htmlPluginData.html += 'The magic footer';
 callback();
});

關于如何在webpack中使用html-webpack-plugin插件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长沙县| 丹江口市| 渝中区| 三穗县| 宾川县| 南木林县| 剑川县| 北安市| 德昌县| 胶南市| 永登县| 罗山县| 卓尼县| 绥化市| 永兴县| 昌宁县| 黎平县| 乳源| 滦南县| 永春县| 泸州市| 色达县| 沙湾县| 清河县| 藁城市| 保亭| 海原县| 康马县| 鄢陵县| 双鸭山市| 呼和浩特市| 息烽县| 崇阳县| 呼伦贝尔市| 扎兰屯市| 隆德县| 鹤壁市| 方山县| 炉霍县| 广饶县| 西昌市|