jade1411
jade1411

Reputation: 1

How can I install this dependency in angular app

Working on my project using angular, wanted to install dependency, but this happened. How can I fix this? Description

Upvotes: 0

Views: 53

Answers (1)

Guzuro
Guzuro

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

Related Questions