Reputation: 585
Facing the below error in the Angular application.
ERROR in ./node_modules/@angular/material/__ivy_ngcc__/fesm2015/table.js 58:58-86
"export '_DisposeViewRepeaterStrategy' was not found in '@angular/cdk/collections'
Tried:
npm install --save @angular/cdk
But it doesn't help
Upvotes: 1
Views: 1305
Reputation: 143
I have had this problem today aswell, for me the problem was a mismatch between @angular/cdk and @angular/material.
"@angular/cdk": "~10.1.3",
"@angular/material": "^10.1.3" <-- this becomes 10.2.0
Upvotes: 3