Loading...
Loading...
npm ERR! ERESOLVE unable to resolve dependency treenpm can't install your packages because of conflicting peer dependency requirements. One package requires a version of a shared dependency that's incompatible with what another package requires.
This tells npm to use the old (npm v6) behavior and ignore peer dependency conflicts.
npm install --legacy-peer-deps
# Or set it permanently for the project
npm config set legacy-peer-deps trueForces npm to install even with conflicts. Use with caution.
npm install --forceCheck if there's a newer version of the package that supports your dependency versions.
# Check what versions are available
npm info package-name versions
# Install a specific version
npm install package-name@latest