This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/.trunk/configs/svgo.config.js
Matthew Baggett baf62da1a0
Some checks failed
Trunk Cache / Trunk Cache (push) Failing after 3s
Trunk Check / Trunk Check Runner (push) Failing after 1s
Trunk Upgrade / Upgrade Trunk (push) Failing after 1s
Initial copy-across of some trunk parts
2024-06-27 23:46:10 +02:00

14 lines
280 B
JavaScript

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