reactjssvgo

This SVGO version is no longer supported. Upgrade to v2.x.x


I am running "npx create-react-app experiment" to create a new project and I get this warning. How can I solve it? I have been researching but I get nothing

warning react-scripts > @svgr/webpack > @svgr/plugin-svgo > svgo@1.3.2: This SVGO version is no longer supported. Upgrade to v2.x.x.


Solution

  • I encountered this error while installing dependencies (npm install) for an existing projects

    and solved this by installing svgo globally using the command below:

    npm install -g svgo

    or

    npm i -g svgo

    hope this helps :)