Can't import SVG into Next.js

前端 未结 6 1715
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 07:39

When I try to import SVG Image then the following error shows. Which loader I have to use for importing SVG images?

./static/Rolling-1s-200px.svg 1:0
Module          


        
6条回答
  •  没有蜡笔的小新
    2020-12-09 08:34

    You can use babel-plugin-inline-react-svg

    import React from 'react';
    import CloseSVG from './close.svg';
    
    const MyComponent = () => ;
    
    npm install --save-dev babel-plugin-inline-react-svg
    
    // .babelrc
    {
      "plugins": [
        "inline-react-svg"
      ]
    }
    

    Or see the link for more instructions.

提交回复
热议问题