Soufiane Sakhi
Soufiane Sakhi
I had the same issue (Cannot read property 'nativeElement' of undefined, this.container being null). You can update to the beta version to fix it: `npm install [email protected]`
I am currently using the beta in production, and it's working for me at least (example: https://simply-how.com/getting-started-with-java-11, right panel of the `IntelliJ IDEA usage` section)
I have also removed all the `entryComponents` in my modules after migrating to Angular 9, it might be it for you (they are now deprecated with the new Ivy compiler)
package.json: ``` { "...": "...", "dependencies": { "@angular/animations": "^9.1.2", "@angular/cdk": "^9.2.1", "@angular/common": "^9.1.2", "@angular/compiler": "^9.1.2", "@angular/core": "^9.1.2", "@angular/forms": "^9.1.2", "@angular/material": "^9.2.1", "@angular/platform-browser": "^9.1.2", "@angular/platform-browser-dynamic": "^9.1.2", "@angular/platform-server": "^9.1.2", "@angular/router": "^9.1.2", "@nguniversal/common":...