mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
18 lines
305 B
JavaScript
18 lines
305 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
"removeXMLNS",
|
|
"removeDimensions",
|
|
"sortAttrs",
|
|
{
|
|
name: "addAttributesToSVGElement",
|
|
params: {
|
|
attributes: [
|
|
{ fill: "currentColor" },
|
|
{ width: "1em" },
|
|
{ height: "1em" },
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|