我正在使用带有 pug 的 Webpack4 作为我的模板引擎。我的配置已全部设置好,一切正常。
我想在我的哈巴狗模板中添加奇怪的内联 SVG 图标,并使用HtmlWebpackInlineSVGPlugin使用它,它适用于我的第一个 SVG,但不适用于我的第二个。
我的“通用”配置文件(根据 Webpack 文档,我也有 dev 和 prod 版本):
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const HtmlWebpackInlineSVGPlugin = require('html-webpack-inline-svg-plugin');
module.exports = {
entry: {
app: './src/js/index.js'
},
output: {
path: path.resolve(__dirname, 'dist')
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.pug',
title: 'Output Management',
minify: {
removeScriptTypeAttributes: true // removes type="text/javascript" from injected <script> tags
}
}),
new HtmlWebpackInlineSVGPlugin({
runPreEmit: true,
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
})
],
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},
{
test: /\.pug$/,
loader: 'pug-loader',
query: {
pretty: true // false is default. Set to true to not minify resulting html
}
}
]
}
};
这行得通
header.pug 模板
img(inline src="src/images/icons/close-icon.svg")
close-icon.svg 内容:
<?xml version="1.0" encoding="UTF-8"?>
<svg viewBox="0 0 15 15">
<path d="m1.3761 1.3683 12.288 12.288m-12.328-0.024469 12.288-12.288" fill="none" stroke="currentColor" stroke-width="2.3272"></path>
</svg>
这显示很好。然而,另一个 SVG 不会使用相同的方法显示:
SVG 代码编译为 INDEX.HTML 文件,但图标不显示且位被剥离
search.pug 模板
img(inline src="src/images/icons/search-icon.svg")
search-icon.svg 内容:
<?xml version="1.0" encoding="UTF-8"?>
<svg class="search__icon" role="img" aria-labelledby="header-search-ico" width="30" height="30" viewBox="0 0 30 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
<title id="header-search-ico">Search</title>
<path d="m13.052 6.4998c-5.2483 8.909e-4 -9.5022 4.2558-9.502 9.5041 8.962e-4 5.2476 4.2545 9.5012 9.502 9.502 5.2483 2.89e-4 9.5033-4.2536 9.5041-9.502 2.9e-4 -5.2491-4.255-9.5043-9.5041-9.5041zm7.0353 16.224 6.5139 6.6193s0.4042 0.41477-6.5139-6.6193z" fill="none" stroke-linecap="round"></path>
</svg>
生成的 html
<svg xmlns="http://www.w3.org/2000/svg" aria-labelledby="header-search-ico" class="search__icon" viewBox="0 0 30 30">
<path fill="none" d="M13.052 6.5a9.504 9.504 0 1 0 .003 19.007A9.504 9.504 0 0 0 13.052 6.5zm7.035 16.224l6.514 6.62s.404.414-6.514-6.62z"></path></svg>
所以<title>
标签和下面的属性被去掉了,而且路径看起来搞砸了。有人有使用 webpack 在 pug 模板中使用内联 SVG 的经验吗?
- 角色
- 宽度
- 高度
- 笔画线帽