kenatwex

Results 27 comments of kenatwex

Okay so named outlets was one option I wanted to consider Is there a convention to keep it in sync with the route hierarchy? can I call the named outlet...

Hi Colum, Im rendering my sidenav and still not projecting yet due to this small issue Im knocking on the door of finishing this... but Im really stuck. routers can...

`crbug/1173575, non-JS module files deprecated. ` is the error from latter attempt above the attempt commented out was yeilding rootDir errors complaining about the remoteEntryModule not living under the root...

Hi COlum, I should be able to do this from my libs/auth.module ``` { path: 'remote-nav', canActivate: [AuthenticatedGuard], loadChildren: () => loadRemoteModule('remote-nav', './Module') .then((m) => m.RemoteEntryModule) }, ``` and im...

Can MFE's survive router transclusion into any outlet positioned anywhere on a single page? Im wondering is Kyle Cannon's work needs attention in Nx. We are transcluding (projecting) entire MFE's...

I can build fine... integrated with apollo client for graphql and now mfe has stopped in runtime refuses to launch my mfe remote from host `Error: Unsatisfied version 0 from...

well Im getting by products of this same issue from other stuff not being articulated properly under the hood. any workaround? ``` main.ts:22 Error: Unsatisfied version 0 from movie-host of...

attempted this one... ``` const coreLibraries = new Set([ '@angular/animations: { singleton: true, strictVersion: true, eager: true, requiredVersion: "^14.2.7" }', '@angular/cdk: { singleton: true, strictVersion: true, eager: true, requiredVersion: "^14.2.7"...

here is my module-federation.config for my remote ``` module.exports = { name: 'ui-auth', exposes: { './Module': 'apps/ui-auth/src/app/remote-entry/entry.module.ts', }, shared: (libraryName, config) => { if (libraryName.startsWith('@apollo/client')) { return { ...config, strictVersion:...

the docs have changed too https://nx.dev/recipes/module-federation/dynamic-module-federation-with-angular using dev-remotes in launch this is how I launch which makes a diff too instead of nx serve I use nx launch ``` "launch":...