Webpack loader used for inline replacement of SVG images with actual content of SVG files in Vue projects.
Sprites works only with Vue Single File Component approach and only with HTML template format.
Can be also used on non-Vue projects, but sprites are not supported.
Loader has built-in SVGO support for SVG optimization.
$ npm install vue-svg-inline-loader --save-dev
$ yarn add vue-svg-inline-loader --dev
In webpack config:
{
test: /\.vue$/,
use: [
"vue-loader",
{
loader: "vue-svg-inline-loader",
options: { /* ... */ }
},
// ...
]
}
Inline replacement:
<img svg-inline class="icon" src="./images/example.svg" alt="example" />
Which replaces into inline SVG:
<svg svg-inline class="icon" role="presentation" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="...">
<path d="..."></path>
</svg>
Or if you want to use inline sprites:
<img svg-inline svg-sprite class="icon" src="./images/example.svg" alt="example" />
Which replaces into inline SVG using inline sprites:
<!-- will get injected right after root opening tag in Vue component -->
<div style="display: none !important;">
<svg>
<symbols>
<symbol id="svg-sprite-example">
<path d="..."></path>
</symbol>
<!-- ... -->
</symbols>
</svg>
</div>
<!-- ... -->
<!-- later in code -->
<svg svg-inline svg-sprite class="icon" role="presentation" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="...">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#svg-sprite-example"></use>
</svg>
Loader won't parse any images with Vue bindings used as src
attribute [more info].
Default options:
{
inline: {
keyword: "svg-inline",
strict: true
},
sprite: {
keyword: "svg-sprite",
strict: true
},
removeAttributes: ["alt", "src"],
md5: false,
xhtml: false,
svgo: {
plugins: [
{
cleanupAttrs: true
},
// ...
]
}
}
Explanation:
-
inline.keyword:
Defines keyword, which marks images you want to replace with inline SVG. Keyword has to be wrapped with whitespace characters (e.g. space). In case of some conflicts, you can also use data version of your keyword (e.g.data-keyword
). -
inline.strict:
In strict mode loader replaces only images with defined keyword. If strict mode is disabled, loader replaces all images. -
sprite.keyword:
Defines keyword, which marks images you want to replace with inline SVG using inline sprites. Keyword has to be wrapped with whitespace characters (e.g. space). In case of some conflicts, you can also use data version of your keyword (e.g.data-keyword
). -
sprite.strict:
In strict mode loader replaces only images with defined keyword. If strict mode is disabled, loader replaces all images. -
removeAttributes:
Array of attributes which will be removed from image tag and won't be transferred to inline SVG replacement. -
md5:
Use md5-encoded file path as ID for SVG sprites instead of plain file name. If project contains multiple SVG files with same file name but different file path, both used in same component, this is a must. -
xhtml:
In XHTML mode attribute minimization is forbidden. Empty attributes are filled with their names to be XHTML-compliant (e.g.disabled="disabled"
). -
svgo:
SVGO configuration object. Documentation can be found here.
User-defined options are not deep-merged with default options.