SVGO plugin which adds 'viewBox' attribute based on 'width' and 'height' attributes
npm install svgo-add-viewbox





> An SVGO plugin to add viewBox attribute based on width and height attributes
!GitHub stars
!GitHub forks
!GitHub watchers
!GitHub followers
!GitHub code size in bytes
!GitHub repo size
!GitHub language count
!GitHub top language
!GitHub last commit
This plugin adds the viewBox attribute to your SVGs based on the width and height attributes. The difference between this plugin and the built-in removeDimensions plugin is that svgo-add-viewbox does not remove the width and height of your SVGs.
In order to use this plugin correctly, your SVGs should have their width and height attributes specified.
v2.x.x or 3.x.x of this plugin should be used with SVGO v3 and above.
v1.x.x of this plugin should be used with SVGO v2.
1. Create a svgo.config.js file following the official configuration guide
2. Use the option to specify a custom plugin.
3. Install this module from NPM
``sh`
npm install svgo-add-viewbox --save-devor
yarn add svgo-add-viewbox -D
4. import the module in your svgo.config.js file:
`javascript`
import addViewBox from 'svgo-add-viewbox';
5. In the plugins array in your svgo.config.js file add the following:
`javascript`
plugins: [
// ... more plugins
addViewBox
// ... more plugins
];
6. Arguments
- overwrite - boolean - defaults to true - If set to false will preserve any existing viewBox attribute on your input SVG files.
Usage:
`javascript``
plugins: [
// ... more plugins
{
...addViewBox,
params: {
overwrite: false
}
}
// ... more plugins
];
7. Execute your SVG transformation NPM script.
MIT
---
---