Diogo Lima Pereira

Results 2 issues of Diogo Lima Pereira

I have a problem with routes with outlets inside a lazyloading module. APP1Routing module: ``` const routes: Routes = [ { path:'app1', children:[ {path:'child',component:ChildComponent}, {path:'outlet',outlet:'example',component:OutletComponent}, {path:'lazy', loadChildren:()=>import('./lazy/lazy.module').then(m => m.LazyModule) },...

I have a problem with routes with outlets inside a lazyloading module. When i have childrens-routes with outles inside a lazyloading module single-spa can't interpret the route and stay in...