SVGO imagemin plugin
$ npm install imagemin-svgo
const imagemin = require('imagemin');
const imageminSvgo = require('imagemin-svgo');
(async () => {
await imagemin(['images/*.svg'], 'build/images', {
use: [
imageminSvgo({
plugins: [
{removeViewBox: false}
]
})
]
});
console.log('Images optimized');
})();
Returns a Promise<Buffer>
.
Type: Object
Pass options to SVGO.
Type: Buffer
Buffer to optimize.
MIT © imagemin
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.