NullInjectorError: No provider for HighContrastModeDetector
Asked Answered
B

4

10

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)?

Baritone answered 25/11, 2019 at 12:11 Comment(1)
Seems like some version mismatch, since this server is providedIn: 'root': github.com/angular/components/blob/master/src/cdk/a11y/… Are you sure all your angular packages have the same version that is required by your project?Julee
B
24

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.

Boylston answered 10/2, 2020 at 19:48 Comment(0)
M
10

This happened to me on StackBlitz when I had a module from @angular/material, but not import { BrowserModule } from '@angular/platform-browser';.

In that case, the solution was to add the BrowserModule.

Massage answered 19/9, 2021 at 2:45 Comment(0)
I
2

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

Inessive answered 13/1, 2020 at 15:27 Comment(0)
E
1

In my case , incompatible versions of @angular/cli and @angular/material was causing the error.

to solve it :

try to upgrade node package modules to compatible versions in package.json and then run npm install --save command.

Eardrop answered 17/6, 2020 at 6:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.