Dustin Nation

Results 4 comments of Dustin Nation

I've also run into the same thing. Its as if the server build doesn't ignore the routes added in App module when you import it into AppServerModule. I thought maybe...

This might be a problem with @angular/platform-server since all the cli does is call renderModuleFactory https://github.com/angular/angular-cli/blob/cfc58a02660d6159db8da20ceb1fbe18cfee2e45/packages/%40angular/cli/tasks/render-universal.ts#L30 Is there a way to unregister a route?

That didn't help me either. For some context, here's my browser routes: ``` const routes: Routes = [ { path: '', component: LayoutComponent, children: [ { path: '', component: RouteAComponent,...

@Manduro 's solution works for me as well. @Brocco should this be added to the blueprint? Or the documentation? I'd be happy to submit a PR for either depending on...