1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17module.exports = { plugins: ['@svgr/plugin-jsx'], jsx: { babelConfig: { plugins: [ [ '@svgr/babel-plugin-remove-jsx-attribute', { elements: ['Svg'], attributes: ['xmlns'], }, ], ], }, }, }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module.exports = { plugins: ['@svgr/plugin-jsx'], jsx: { babelConfig: { plugins: [ [ '@svgr/babel-plugin-remove-jsx-attribute', { elements: ['Svg'], attributes: ['xmlns'], }, ], ], }, }, }