meshtastic/.trunk/configs/svgo.config.js
2023-01-19 22:41:44 +10:00

15 lines
275 B
JavaScript

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