diff --git a/projects/shell/src/menu-utils.ts b/projects/shell/src/menu-utils.ts index d0649b5..d9fce10 100644 --- a/projects/shell/src/menu-utils.ts +++ b/projects/shell/src/menu-utils.ts @@ -10,5 +10,5 @@ export function buildRoutes(options: Microfrontend[]): Routes { loadChildren: () => loadRemoteModule(o).then(m => m[o.ngModuleName]) })); - return [...APP_ROUTES, ...lazyRoutes]; + return [...lazyRoutes, ...APP_ROUTES]; }