mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 17:29:11 +00:00
23 lines
408 B
JavaScript
23 lines
408 B
JavaScript
export default {
|
|
plugins: [
|
|
'removeDoctype',
|
|
'removeXMLProcInst',
|
|
'minifyStyles',
|
|
'sortAttrs',
|
|
'sortDefsChildren',
|
|
'removeDimensions',
|
|
'removeViewBox',
|
|
{
|
|
name: 'convertColors',
|
|
params: {
|
|
currentColor: true,
|
|
names2hex: true,
|
|
rgb2hex: true,
|
|
convertCase: 'lower',
|
|
shorthex: true,
|
|
shortname: true
|
|
}
|
|
}
|
|
]
|
|
};
|