Reputation: 1
Working on my project using angular, wanted to install dependency, but this happened. How can I fix this? Description
Upvotes: 0
Views: 53
Reputation: 13
Error says that [email protected] requires @angular/common version 13.3+, but your project has ~13.2.0 (updated only patch version).
So you need to install @angular/[email protected]+ version on run npm i with "--legacy-peer-deps" that will skip installing peer deps (more you can read Here)
Upvotes: 1