vue-svgicon
Version:
A tool to create svg icon components. (vue 2.x)
40 lines (39 loc) • 704 B
JavaScript
module.exports = {
plugins: [
{
removeAttrs: {}
},
{
removeTitle: true
},
{
inlineStyles: {
onlyMatchedOnce: false
}
},
{
convertStyleToAttrs: true
},
{
removeStyleElement: true
},
{
removeComments: true
},
{
removeDesc: true
},
{
removeUselessDefs: true
},
{
cleanupIDs: {
remove: true,
prefix: 'svgicon'
}
},
{
convertShapeToPath: true
}
]
}