名称
类型
默认值
描述
sources
{Boolean|Object}
true
启用/禁用 sources 处理
preprocessor
{Function}
undefined
允许在处理前对内容进行预处理
minimize
{Boolean|Object}
在生产模式下为 true
,其他情况为 false
通知 html-loader
压缩 HTML
esModule
{Boolean}
true
启用/禁用 ES modules 语法
sources
类型: Boolean|Object
默认值: true
默认情况下,每个可加载属性(例如 - <img src="image.png"/>
)都将被导入( const img = require ('./image.png'
) 或 import img from "./image.png""
)。 你可能需要为配置中的图片指定 loader(推荐使用 asset modules)。
支持的标签和属性:
-
audio
标签的 src 属性
-
embed
标签的 src 属性
-
img
标签的 src 属性
-
img
标签的 srcset 属性
-
input
标签的 src 属性
-
object
标签的 data 属性
-
script
标签的 src 属性
-
script
标签的 href 属性
-
script
标签的 xlink:href 属性
-
source
标签的 src 属性
-
source
标签的 srcset 属性
-
track
标签的 src 属性
-
video
标签的 poster 属性
-
video
标签的 src 属性
-
image
标签的 xlink:href 属性
-
image
标签的 href 属性
-
use
标签的 xlink:href 属性
-
use
标签的 href 属性
- 当 rel 属性值包含 stylesheet、icon、shortcut icon、mask-icon、apple-touch-icon、apple-touch-icon-precomposed、apple-touch-startup-image、manifest、prefetch、preload 或者当 itemprop 属性为 image、logo、screenshot、thumbnailurl、contenturl、downloadurl、duringmedia、embedurl、installurl、layoutimage 时,支持 link 标签的 href 属性
- 当 rel 属性值包含 stylesheet、icon、shortcut icon、mask-icon、apple-touch-icon、apple-touch-icon-precomposed、apple-touch-startup-image、manifest、prefetch、preload时,支持 link 标签的 imagesrcset 属性
- 当 name 属性为 msapplication-tileimage、msapplication-square70x70logo、msapplication-square150x150logo、msapplication-wide310x150logo、msapplication-square310x310logo、msapplication-config、twitter:image 或者当 property 属性为 og:image、og:image:url、og:image:secure_url、og:audio、og:audio:secure_url、og:video、og:video:secure_url、vk:image,支持 meta 标签的 content 属性。
- 当 name 属性为 msapplication-task 时,支持 meta 标签的 content 属性中的 icon-uri 值组件
Boolean
当设置为 true 时,则启用所有默认元素和属性的处理,而 false 则禁用所有属性的处理。
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
// Disables attributes processing
sources: false,
},
},
],
},
};
Object
你可以配置要处理的标签和属性,来过滤它们,过滤 URL 并处理以 / 开头的资源地址。
例如:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
list: [
// All default supported tags and attributes
"...",
{
tag: "img",
attribute: "data-src",
type: "src",
},
{
tag: "img",
attribute: "data-srcset",
type: "srcset",
},
],
urlFilter: (attribute, value, resourcePath) => {
// `attribute` 参数包含一个 HTML 属性的名称。
// `value` 参数包含一个 HTML 属性的值。
// `resourcePath` 参数包含一个已加载 HTML 文件的路径。
if (/example.pdf$/.test(value)) {
return false;
}
return true;
},
},
},
},
],
},
};
list
类型:Array
默认值:支持的标签和属性列表
允许设置要处理的标签和属性以及处理方式,以及过滤其中一些标签和属性的能力。
使用 ... 语法可以使用所有默认支持的标签和属性。
例如:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
list: [
// All default supported tags and attributes
"...",
{
tag: "img",
attribute: "data-src",
type: "src",
},
{
tag: "img",
attribute: "data-srcset",
type: "srcset",
},
{
// Tag name
tag: "link",
// Attribute name
attribute: "href",
// Type of processing, can be `src` or `scrset`
type: "src",
// Allow to filter some attributes
filter: (tag, attribute, attributes, resourcePath) => {
// The `tag` argument contains a name of the HTML tag.
// The `attribute` argument contains a name of the HTML attribute.
// The `attributes` argument contains all attributes of the tag.
// The `resourcePath` argument contains a path to the loaded HTML file.
if (/my-html.html$/.test(resourcePath)) {
return false;
}
if (!/stylesheet/i.test(attributes.rel)) {
return false;
}
if (
attributes.type &&
attributes.type.trim().toLowerCase() !== "text/css"
) {
return false;
}
return true;
},
},
],
},
},
},
],
},
};
如果未指定标签名称,它将处理所有标签。
你可以使用自定义过滤器指定要处理的 html 元素。
例如:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
list: [
{
// Attribute name
attribute: "src",
// Type of processing, can be `src` or `scrset`
type: "src",
// Allow to filter some attributes (optional)
filter: (tag, attribute, attributes, resourcePath) => {
// The `tag` argument contains a name of the HTML tag.
// The `attribute` argument contains a name of the HTML attribute.
// The `attributes` argument contains all attributes of the tag.
// The `resourcePath` argument contains a path to the loaded HTML file.
// choose all HTML tags except img tag
return tag.toLowerCase() !== "img";
},
},
],
},
},
},
],
},
};
filter 也可以用来扩展支持的元素和属性。
例如,filter 可以帮助处理引用资源的 meta 标签:
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
list: [
{
tag: "meta",
attribute: "content",
type: "src",
filter: (tag, attribute, attributes, resourcePath) => {
if (
attributes.value === "og:image" ||
attributes.name === "twitter:image"
) {
return true;
}
return false;
},
},
],
},
},
},
],
},
};
请注意: 带有 tag 配置项的 source 优先级要比没有 tag 配置项的高。
filter 可以用于禁用默认 source。
示例:
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
list: [
"...",
{
tag: "img",
attribute: "src",
type: "src",
filter: () => false,
},
],
},
},
},
],
},
};
urlFilter
类型:Function
默认值: undefined
允许配置要过滤的 url。所有过滤的 url 都参与解析(会保持原样)。 默认情况下,所有非请求资源类型的值(例如 <img src="javascript:void (0)" />
)都不处理。
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
sources: {
urlFilter: (attribute, value, resourcePath) => {
// The `attribute` argument contains a name of the HTML attribute.
// The `value` argument contains a value of the HTML attribute.
// The `resourcePath` argument contains a path to the loaded HTML file.
if (/example.pdf$/.test(value)) {
return false;
}
return true;
},
},
},
},
],
},
};
preprocessor
类型:Function
默认值:undefined
允许在处理之前对内容进行预处理。
⚠你应该始终返回有效的 HTML
file.hbs
<div>
<p>{{firstname}} {{lastname}}</p>
<img src="image.png" alt="alt" />
<div>
Function
你可以将 preprocessor 选项设置为 Function 实例。
webpack.config.js
const Handlebars = require("handlebars");
module.exports = {
module: {
rules: [
{
test: /.hbs$/i,
loader: "html-loader",
options: {
preprocessor: (content, loaderContext) => {
let result;
try {
result = Handlebars.compile(content)({
firstname: "Value",
lastname: "OtherValue",
});
} catch (error) {
loaderContext.emitError(error);
return content;
}
return result;
},
},
},
],
},
};
你还可以将 preprocessor 选项设置为异步函数实例。
例如:
webpack.config.js
const Handlebars = require("handlebars");
module.exports = {
module: {
rules: [
{
test: /.hbs$/i,
loader: "html-loader",
options: {
preprocessor: async (content, loaderContext) => {
let result;
try {
result = await Handlebars.compile(content)({
firstname: "Value",
lastname: "OtherValue",
});
} catch (error) {
await loaderContext.emitError(error);
return content;
}
return result;
},
},
},
],
},
};
minimize
类型:Boolean|Object
默认值:在生产模式下为 true ,否则为 false
告诉 html-loader
编译时需要压缩 HTML 字符串。
Boolean
默认情况下,启用压缩的规则如下:
({
caseSensitive: true,
collapseWhitespace: true,
conservativeCollapse: true,
keepClosingSlash: true,
minifyCSS: true,
minifyJS: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
});
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
minimize: true,
},
},
],
},
};
Object
webpack.config.js
关于可用选项的更多信息,请参阅 html-minifier-terser 文档。
可以在 webpack.conf.js 中使用以下选项来禁用规则
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
minimize: {
removeComments: false,
collapseWhitespace: false,
},
},
},
],
},
};
esModule
类型:Boolean
默认值:false
默认情况下, html-loader 生成使用 ES modules 语法的 JS 模块。 在某些情况下,使用 ES modules 会更好,例如在进行模块合并和 tree shaking 时。
你可以使用以下方法启用 CommonJS 模块语法:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {
esModule: false,
},
},
],
},
};
示例
使用 <!-- webpackIgnore: true --> 注释禁用 url 解析
通过 <!-- webpackIgnore: true -->
注释,可以禁止处理下一个标签的源。
<!-- 禁止对 src 属性进行 url 处理 -->
<!-- webpackIgnore: true -->
<img src="image.png" />
<!-- 禁止对 src 与 srcset 属性进行 url 处理 -->
<!-- webpackIgnore: true -->
<img
srcset="image.png 480w, image.png 768w"
src="image.png"
alt="Elva dressed as a fairy"
/>
<!-- 禁止对 content 属性进行 url 处理 -->
<!-- webpackIgnore: true -->
<meta itemprop="image" content="./image.png" />
<!-- 禁止对 href 属性进行 url 处理 -->
<!-- webpackIgnore: true -->
<link rel="icon" type="image/png" sizes="192x192" href="./image.png" />
roots
使用 resolve.roots 可以指定解析相对服务端的 URL(以 '/' 开头)请求的目录列表。
webpack.config.js
module.exports = {
context: __dirname,
module: {
rules: [
{
test: /.html$/i,
loader: "html-loader",
options: {},
},
{
test: /.jpg$/,
type: "asset/resource",
},
],
},
resolve: {
roots: [path.resolve(__dirname, "fixtures")],
},
};
file.html
<img src="/image.jpg" />
// => image.jpg in __dirname/fixtures will be resolved
CDN
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.jpg$/,
type: "asset/resource",
},
{
test: /.png$/,
type: "asset/inline",
},
],
},
output: {
publicPath: "https://175.178.95.144/zijie/pic/webpack/ppre lang=javascriptcode class=javascript<img src=image.jpg" data-src="image2x.png" />
index.js
require("html-loader!./file.html");
// => '<img src="https://175.178.95.144/zijie/pic/webpack/a992ca.jpg" rel="external nofollow" rel="external nofollow" data-src="image2x.png"/>'
require('html-loader?{"sources":{"list":[{"tag":"img","attribute":"data-src","type":"src"}]}}!./file.html');
// => '<img src="image.jpg" data-src="data:image/png;base64,..." />'
require('html-loader?{"sources":{"list":[{"tag":"img","attribute":"src","type":"src"},{"tag":"img","attribute":"data-src","type":"src"}]}}!./file.html');
// => '<img src="https://175.178.95.144/zijie/pic/webpack/a992ca.jpg" rel="external nofollow" rel="external nofollow" data-src="data:image/png;base64,..." />'
处理 script 和 link 标签
script.file.js
console.log(document);
style.file.css
a {
color: red;
}
file.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Title of the document</title>
<link rel="stylesheet" type="text/css" href="./style.file.css" />
</head>
<body>
Content of the document......
<script src="./script.file.js"></script>
</body>
</html>
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /.html$/,
type: "asset/resource",
generator: {
filename: "[name][ext]",
},
},
{
test: /.html$/i,
use: ["extract-loader", "html-loader"],
},
{
test: /.js$/i,
exclude: /.file.js$/i,
loader: "babel-loader",
},
{
test: /.file.js$/i,
type: "asset/resource",
},
{
test: /.css$/i,
exclude: /.file.css$/i,
loader: "css-loader",
},
{
test: /.file.css$/i,
type: "asset/resource",
},
],
},
};
模板
你可以使用任何模板系统。以下是 handlebars 的示例。
file.hbs
<div>
<p>{{firstname}} {{lastname}}</p>
<img src="image.png" alt="alt" />
<div>
webpack.config.js
const Handlebars = require("handlebars");
module.exports = {
module: {
rules: [
{
test: /.hbs$/i,
loader: "html-loader",
options: {
preprocessor: (content, loaderContext) => {
let result;
try {
result = Handlebars.compile(content)({
firstname: "Value",
lastname: "OtherValue",
});
} catch (error) {
loaderContext.emitError(error);
return content;
}
return result;
},
},
},
],
},
};
PostHTML
你可以使用 PostHTML 而无需任何其他加载程序。
file.html
<img src="image.jpg" />
webpack.config.js
const posthtml = require("posthtml");
const posthtmlWebp = require("posthtml-webp");
module.exports = {
module: {
rules: [
{
test: /.hbs$/i,
loader: "html-loader",
options: {
preprocessor: (content, loaderContext) => {
let result;
try {
result = posthtml().use(plugin).process(content, { sync: true });
} catch (error) {
loaderContext.emitError(error);
return content;
}
return result.html;
},
},
},
],
},
};
导出为 HTML 文件
一种非常常见的情况是将 HTML 导出到自己的 .html 文件中,以直接使用, 而非注入到 javascript。 可以使用以下 2 种 loader 的组合来实现:
- extract-loader
- html-loader
还有 asset modules
html-loader 将解析 URL,同时引入图片以及你需要的所有内容。 extract loader 会将 javascript 解析为正确的 html 文件, 然后确保图片被引入且路径正确, asset modules 会为你生成 .html 文件。例如:
webpack.config.js
module.exports = {
output: {
assetModuleFilename: "[name][ext]",
},
module: {
rules: [
{
test: /.html$/,
type: "asset/resource",
generator: {
filename: "[name][ext]",
},
},
{
test: /.html$/i,
use: ["extract-loader", "html-loader"],
},
],
},
};
贡献
如果你还没有阅读,请花一点时间阅读我们的贡献指南。
许可证
MIT