An override you set conflicts with dependency resolution. Adjust or remove the override, or align versions so the override matches the graph.
npm overrides (package.json "overrides") force specific versions. If the forced version conflicts with peer/dep requirements, the resolver errors with ERESOLVE override conflict.
Read which package and version the override is forcing and what peer/dep range it violates.
Pick a version that satisfies peers, or delete the override entirely and let npm resolve naturally.
Upgrade/downgrade the dependent package so its peers match the override target.
Refresh resolution after changes:
rm -rf node_modules package-lock.json
npm installUse overrides sparingly—prefer upgrading the real dependency. Overrides that fight peers often cause runtime breakage.
npm ERR! code ENOAUDIT npm ERR! Audit endpoint not supported
How to fix "npm ERR! code ENOAUDIT - Audit endpoint not supported"
npm ERR! code EBADDEVENGINES npm ERR! devEngines.runtime incompatible with current node version
How to fix "npm ERR! code EBADDEVENGINES - devEngines.runtime incompatible with current node version"
npm ERR! code ETOOMANYARGS npm ERR! Too many arguments
How to fix "npm ERR! code ETOOMANYARGS - Too many arguments"