Value at position x in the NgModule.imports of AppModule is not a reference: [object Object]
See original GitHub issueSummary
I’m submitting a:
- bug report
- feature request
- question / support request
- other
Description
Upgradeing to Angular9 and using RecaptchaModule.forRoot() breaks the app. Remove the .forRoot() fixes this. However, this wasent very clear from the insane amounts of errors that came. Others might run into this issue, and this is why i decided to post it here.
.forRoot() was once required to setup https://github.com/DethAriel/ng-recaptcha/commit/7fb97fb04049dd058a2394ecef297dac7c6104d1#diff-04c6e90faac2675aa89e2176d2eec7d8
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Angular 9: Value at position X in the NgModule.imports is ...
The text of the warning seems explaining exactly the compilation error, where the position (2 in this case) is out of range of...
Read more >Value at position 6 in the NgModule.imports of AppModule ...
The problem is in your AppModule not ApiModule . What is the 6th/7th position in the imports property of AppModule ?
Read more >value at position 1 in the ngmodule.declarations of ...
imports of AppModule is not a class Value is a reference to 'NgModule'. 4510 export declare const NgModule: ...
Read more >NgModule FAQ
The "x" class isn't visible to other modules until you add it to the exports list. What should I import?link. Import NgModules whose...
Read more >Angular Modules and NgModule - Complete Guide
In this post, we are going to do an introduction to Angular Modularity (the NgModule functionality) and understand why it enables several ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
removing .forRoot() doesn’t fix the issue it just lets the app compile but i still get an error when the app is running
+1. Got me stuck in update to Angular 9, when I was running
ng build --prod
possibly due to AOT or buildOptimizer.ng build
orng serve
worked as it should. After countless iterations of removing modules, I found out thatng-recaptcha
was the issue. Removed it, my project build correctly. Stumbled upon this issue, added the module back and removed.forRoot()
and this fixed the issue.