DEV Community

MUMTAHINA-766
MUMTAHINA-766

Posted on

Answer: How do I resolve peer dependency error:

Use the following command to resolve this when installing the node module

npm install --legacy-peer-deps

if above doesn't work for you then you can tey npm install --force

--legacy-peer-deps: ignore all peerDependencies when installing, in the style of npm version 4 through version 6.

Top comments (0)