I started getting this error after upgrading from Angular 2 RC4 to RC5. It does not seem to be affecting the behaviour of the application but is being written to the console and could distract from other errors etc.
Can anyone provide some tips on how to troubleshoot it?
This is an old question; however, as it featured prominently among Google's responses when I was searching for the solution to the same console message, I'll leave here what worked for me.
The code I'm working with was originally built with AngularJS, but development later switched to Angular2. When the app is loading, a bootstrap call is made with UpgradeAdapter, and apparently this was where the problem was occurring.
What I did was import NgZone from @angular/core and use the runOutsideAngular method to perform the bootstrap call. Once I did that, the error message went away. Example:
this.zone.runOutsideAngular(() => { performBootstrapCall(); });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With