"export '_supportsShadowDom' was not found in '@angular/cdk/platform'

Viewed 5516

I have install all necessary library to run angular app. But still build with error

"export '_supportsShadowDom' was not found in '@angular/cdk/platform'

I could not trace issues. What can I try next?

1 Answers

Try to install this version since Angular Material version is ^8.0.0:

install @angular/cdk 8.2.3

The version of Angular CDK must be lined up to the version of Angular Material.

Check this issue in github.

Related