This config still removes the viewBox attribute from SVGs loaded with react-svg-loader. Why is that? ``` options: { svgo: { plugins: [ { convertPathData: { noSpaceAfterFlags: false }, removeViewBox: false, }, ], }, }, ```