There's something wrong with my project that I can't install any more plugins, I'm using ionic with angular
I've tried giving several other commands that I found to try to solve it and so far I haven't been able to
CodePudding user response:
try npm install -f package_name
CodePudding user response:
as suggested in the error, you have dependency conflict. you have to either upgrade your packages with npm update
or in this case where the package is angular ng update
, or removing some packages that cause the conflict, or ignore it and use your command with --legacy-peer-deps
.