Если отключить svgo, то
const configSVG = {
transform: [],
mode: {
stack: true // Create a «stack» sprite
}
};
Если сконфигурировать svgo, то
const configSVG = {
transform: [{svgo: {
js2svg: {pretty: true}, // Отключаем минификацию svg.
plugins: [
{cleanupListOfValues: {floatPrecision: 0}},
{inlineStyles: {onlyMatchedOnce: false}},
{removeAttrs: {attrs: ['stroke', 'data-name']}},
{removeAttributesBySelector: {selector: ':not([fill="none"])', attributes: ['fill']}}
]
}}],
mode: {
stack: true // Create a «stack» sprite
}
};
По конфигу svgo
https://github.com/svg/svgo#what-it-can-do