๐Ÿ“ฆ hyoban / follow-app

๐Ÿ“„ .svgrrc.js ยท 17 lines
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'],
          },
        ],
      ],
    },
  },
}