mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-12 16:44:20 -08:00
15 lines
242 B
JavaScript
15 lines
242 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
{
|
|
name: "preset-default",
|
|
params: {
|
|
overrides: {
|
|
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
|
|
sortAttrs: true,
|
|
removeOffCanvasPaths: true,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
};
|