Don't optimzie colors
This commit is contained in:
parent
5ba74b1d75
commit
f7b302d34f
1 changed files with 10 additions and 1 deletions
|
@ -57,7 +57,16 @@ async function generateIconSourceMap(icons, manifestLocation) {
|
|||
const resolvedLocation = path.resolve(__dirname, "../../", manifestLocation, location);
|
||||
const iconData = await fs.readFile(resolvedLocation);
|
||||
const svgString = iconData.toString();
|
||||
const result = optimize(svgString);
|
||||
const result = optimize(svgString, {
|
||||
plugins: [
|
||||
{
|
||||
name: "preset-default",
|
||||
params: {
|
||||
overrides: { convertColors: false, },
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
const optimizedSvgString = result.data;
|
||||
const fileName = path.basename(resolvedLocation);
|
||||
sources[fileName] = optimizedSvgString;
|
||||
|
|
Reference in a new issue