mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 09:27:09 +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
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|