NeNaD
NeNaD

Reputation: 20304

An unhandled exception occurred: NOT SUPPORTED: keyword "id", use "$id" for schema ID - "ng add @ngrx/store" in Angular 13

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

Upvotes: 1

Views: 2979

Answers (1)

NeNaD
NeNaD

Reputation: 20304

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

ng add @ngrx/store@latest

Upvotes: 3

Related Questions