html-webpack-inline-image
v1.1.0
Published
Embed svg inline when using the html webpack plugin
Downloads
15
Maintainers
Readme
Inline SVG extension for the HTML Webpack Plugin
Convert .svg files into inline SVG tags within the output html of templates parsed by html-webpack-plugin.
By inlining SVGs you can combine them with techniques such as: Icon System with SVG Sprites.
As of version 1.0.0 by default this plugin processes SVG files after all template and image files have been written to their corresponding output directory. This allows it to work alongside loaders, after webpack resolves all file locations.
Please note: to use aliases you will need to install loaders to resolve your svg paths and parse the templates html. More info is provided below: Getting to your SVGs.
As of version 1.1.0 the plugin can also be run prior to the output of your templates. This allows you to reference image files from the root of your project which can help with getting to certain files, i.e. within your node_modules
directory. More info is provided below: Setting runPreEmit option.
The plugin relies on svgo to optimise SVGs. You can configure it's settings, check config for more details.
Installation
Install the plugin with npm:
$ npm install --save-dev html-webpack-inline-svg-plugin
or yarn:
$ yarn add html-webpack-inline-svg-plugin --dev
Usage
Require the plugin in your webpack config:
const HtmlWebpackInlineSVGPlugin = require('html-webpack-inline-svg-plugin');
Add the plugin to your webpack config as follows:
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackInlineSVGPlugin()
]
Add img
tags with inline
attribute and .svg
file as src to your template/s that the html-webpack-plugin is processing (the default is index.html
).
<!-- Works: below img tag will be removed and replaced by the content of the svg in its src -->
<img inline src="images/icons.svg">
<!-- Ignored: this img will not be touched as it has no inline attribute -->
<img src="images/foo.svg">
<!-- Broken: the plugin will ignore this src as it is not an svg -->
<img inline src="images/i-will-be-ignored.png">
Getting to your SVGs
Breaking change: As of version 1.0.0 the plugin waits for webpack to resolve image locations and write them to disk. If you were using a version prior to 1.0.0 then it is likely you'll need to update the src paths to your inline SVGs to reflect this change. See below for more info.
There are three ways of working with your <img>
src attributes and this plugin.
- If you are not working with loaders to allow webpack to parse and resolve the
img
tagssrc
attributes within your html-webpack-plugin templates. Use paths that are relative to your svg images from the output location of the template that is referencing it. - Alternatively use loaders such as html-loader to parse the html templates, and file-loader or something similar, to resolve the paths of your
img
tagssrc
attributes. As the plugin works after webpack has emitted all its assets and html-webpack-plugin has output your templates, it will read the SVGs that webpack places in your output directory, and replace any inlined img tags with this content. - Set the
runPreEmit
flag and reference files relative to yourpackage.json
file. This feature is only available with version >= 1.1.0. More info is provided below: Setting runPreEmit option.
Sample Project Structure
my-project
-- package.json
-- webpack-config.js
-- <node_modules>
-- <src>
---- index.html
---- <images>
------ icons.svg
------ foo.svg
Default Config (not setting runPreEmit
option)
With the above structure inlining icons.svg would look like: <img inline src="images/icons.svg">
If an alias was in place for the images directory, i.e.
'img': path.join(__dirname, 'src', 'images')
Then the svg can be inlined with: <img inline src="~img/icons.svg">
. This method would require the use of loaders on your templates as shown above in point 2.
Setting runPreEmit
option
If you aren't using loaders to resolve file locations, and would prefer to reference image paths relative to the root of your project (where your package.json
file resides) then set the plugins runPreEmit
config option to true
:
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackInlineSVGPlugin({
runPreEmit: true,
})
]
The plugin will now run prior to html-webpack-plugin saving your templates to your output directory. It will also expect all <img inline
src attributes to be relative to your package.json
file.
Therefore with the above project structure, and runPreEmit
set to true
, inlining icons.svg would look like: <img inline src="src/images/icons.svg">
Config
To configure SVGO (module used to optimise your SVGs), add an svgoConfig
object to your html-webpack-plugin
config:
plugins: [
new HtmlWebpackPlugin({
svgoConfig: {
removeTitle: false,
removeViewBox: true,
},
}),
new HtmlWebpackInlineSVGPlugin()
]
For a full list of the SVGO config (default) params we are using check out: svgo-config.js. The config you set is merged with our defaults, it does not replace it.
Features
- Optimises / minimizes the output SVG
- Allows for deep nested SVGs
- Supports webpack aliases for file locations
- Ignores broken tags - incase you are outputting templates for various parts of the page
- Performs no html decoding so supports language tags, i.e.
<?php echo 'foo bar'; ?>
Known Issues
- none currently
Contribution
You're free to contribute to this project by submitting issues and/or pull requests. This project is test-driven, so keep in mind that every change and new feature should be covered by tests.
License
This project is licensed under MIT.