I'm lazyloading a feature module inside an Angular Element project.
loadChildren: './crisis-center/crisis-center.module#CrisisCenterModule',
If in my lazy loaded module routes there is a route with component and children all the module route stop working with the error:
No component factory found for CrisisListComponent. Did you add it to @NgModule.entryComponents?
Here you can see a stackblitz of the problem. The test project is forked from this Angular tutorial Stackblitz and the only changes are the one needed for Elements.
I'm missing something or is this an Angular Element bug?