network/.trunk/configs/svgo.config.js

15 lines
242 B
JavaScript
Raw Normal View History

2023-07-24 23:46:18 +03:00
module.exports = {
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
sortAttrs: true,
removeOffCanvasPaths: true,
},
},
},
],
};