mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-31 16:37:32 -08:00
15 lines
275 B
JavaScript
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
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|