1

After the upgrade to Angular 13, when I try to add NgRx to the project with schematics (ng add @ngrx/store) I get this error:

An unhandled exception occurred: NOT SUPPORTED: keyword "id", use "$id" for schema ID
NeNaD
  • 18,172
  • 8
  • 47
  • 89

1 Answers1

3

Installing the latest version of the @ngrx/store fixed it:

ng add @ngrx/store@latest
NeNaD
  • 18,172
  • 8
  • 47
  • 89