mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
23 lines
522 B
JavaScript
23 lines
522 B
JavaScript
const plugins = [
|
|
{removeDimensions: true},
|
|
// {removeXMLNS: false},
|
|
{removeScriptElement: true},
|
|
{removeViewBox: false},
|
|
{moveElemsAttrsToGroup: false},
|
|
{
|
|
convertPathData: {
|
|
lineShorthands: false,
|
|
curveSmoothShorthands: false,
|
|
forceAbsolutePath: true,
|
|
},
|
|
},
|
|
];
|
|
|
|
const svgc = require("./src/svgclean.js");
|
|
const inst = svgc.configure({plugins});
|
|
|
|
exports.optimize = function(data) {
|
|
return svgc.optimize(inst, data)
|
|
.then((result) => result.data);
|
|
};
|
|
|