Has anyone come across error NG0908 and managed to resolve it?

1.8k Views Asked by At

I can't find much about this error code, it isn't in the docs.

All I can find is this GitHub issue https://github.com/angular/angular/issues/50742

Seems to be to do with angular not detecting zone.js has loaded.

That issue suggests that you ensure poly fills and runtime gets loaded before main.

I've done that, still getting the error every now and then.

Other problem is there's no easy way to reproduce it as 99% of the time it doesn't happen.

So has anyone else had this error code and if so how did you resolve it?

3

There are 3 best solutions below

0
On

Please check if zone js is properly imported in polyfills.ts.

import 'zone.js/dist/zone'; // Included with Angular CLI.

Also check if polyfills.ts is getting loaded in angular.json

"polyfills": "src/polyfills.ts",
1
On

For newer versions of Angular, you need to use this import instead:

import 'zone.js';
0
On

For Angular version 17, add the below code in the main.server.ts file and it will solve the issue.

import 'zone.js';