I have situation where I am trying to chain a bunch of lazy-loaded routes with the forChild function. However after loading one of my lazy loaded modules, I get this route error in the browser when clicking on a link to a supposedly newly registered route:
ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'mfe3/b/c' Error: Cannot match any routes. URL Segment: 'mfe3/b/c'
This is the structure of my RouterModule reference calls in each module.
I have situation where I am trying to chain a bunch of lazy-loaded routes with the forChild function. However after loading one of my lazy loaded modules, I get this route error in the browser when clicking on a link to a supposedly newly registered route:
ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'mfe3/b/c' Error: Cannot match any routes. URL Segment: 'mfe3/b/c'
This is the structure of my RouterModule reference calls in each module.
AppModule
BModule
CModule
Is there a reason for why the CModule matcher isn't being registered in the Router? Any insight would really help me out!