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

15 lines
275 B
JavaScript
Raw Normal View History

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