meshtastic/.trunk/configs/svgo.config.js
2023-01-14 12:02:59 +10:00

15 lines
280 B
JavaScript

module.exports = {
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
sortAttrs: true,
removeOffCanvasPaths: true,
},
},
},
],
};