You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did according to documentation, but it doesn't working. In runtime I getting error: No provider for InjectionToken REACTIVE_COMPONENT_LOADER_MODULE_REGISTRY!
Then I moved ReactiveComponentLoaderModule.withModule to root module, but It didn't work because wt-lazy not defined in child module, so I declared ReactiveComponentLoaderModule.forRoot() in child module's imports and it works.
Is the problem with the module itself for the latest angular version or documentation incorrect?
The text was updated successfully, but these errors were encountered:
@julamb for me ReactiveComponentLoaderModule.withModule in root module works (just export an array of ReactiveComponentLoaderModule.withModule in child modue and import in root module).
ReactiveComponentLoaderModule.forRoot() in the child module
Angular 8
I did according to documentation, but it doesn't working. In runtime I getting error:
No provider for InjectionToken REACTIVE_COMPONENT_LOADER_MODULE_REGISTRY!
Then I moved ReactiveComponentLoaderModule.withModule to root module, but It didn't work because
wt-lazy
not defined in child module, so I declaredReactiveComponentLoaderModule.forRoot()
in child module'simports
and it works.Is the problem with the module itself for the latest angular version or documentation incorrect?
The text was updated successfully, but these errors were encountered: