Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NullInjectorError: No provider for HighContrastModeDetector

I am using Angular 8 for my project, using Node Version 10.15.3( had tried with other versions including latest 12.31.1). This works fine on MAC but while running on the Windows it stops on the browser with the error

NullInjectorError: "StaticInjectorError(AppModule)[MatCommonModule -> HighContrastModeDetector]: 
  StaticInjectorError(Platform: core)[MatCommonModule -> HighContrastModeDetector]: 
    NullInjectorError: No provider for HighContrastModeDetector!"

Is this related to my hardware (how does it is related)?

like image 265
anupkmaharjan Avatar asked Nov 25 '19 12:11

anupkmaharjan


2 Answers

The issue is not related Node version. Its due to incompatible Angular Material and Angular versions. For angular 8, you need angular material version 8.2.3. Run below command from your project root directory.

npm i --save @angular/[email protected] @angular/[email protected]

For steps to find out compatible angular and angular material version see ans to this SO post.

like image 116
Dexter Avatar answered Oct 29 '22 00:10

Dexter


In my case, @angular/cdk version was causing the error.

Setting it from github:angular/cdk-builds to ^8.1.4 on package.json and then running a npm install solved the problem

enter image description here

like image 23
undefined is our god Avatar answered Oct 29 '22 01:10

undefined is our god