meshtastic/.trunk/configs/svgo.config.js

15 lines
242 B
JavaScript
Raw Normal View History

2023-01-13 18:02:59 -08:00
module.exports = {
2023-05-11 18:45:34 -07:00
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
sortAttrs: true,
removeOffCanvasPaths: true,
},
},
},
],
2023-01-13 18:02:59 -08:00
};