0

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

jade1411
  • 1
  • 2
  • 1
    The answer is in the error. You either need to use the `--force` or `--legacy-peer-deps` option when installing the dependency. – Brandon Taylor Feb 08 '23 at 19:54

1 Answers1

1

Error says that ngx-simple-countdown@13.0.1 requires @angular/common version 13.3+, but your project has ~13.2.0 (updated only patch version).

So you need to install @angular/common@13.3+ version on run npm i with "--legacy-peer-deps" that will skip installing peer deps (more you can read Here)

Guzuro
  • 13
  • 3