Step by step instructions for setting up a angular application using dynamic federation
Guide based on NX docs: dynamic module federation with angular
$ pnpx create-nx-workspace@latest angular-module-federation --preset=apps
Next select Azure Devops as CI server
$ pnpx nx add @nx/angular
$ nx g @nx/angular:host apps/dashboard --prefix=ng-mf
$ nx g @nx/angular:remote apps/login --prefix=ng-mf --host=dashboard
$ nx g @nx/angular:lib libs/shared/data-access-user
$ nx g @nx/angular:service user --project=data-access-user
To run both the host and the remote
$ nx run login:serve
$ nx serve dashboard --devRemotes=login
$ nx g @nx/angular:host apps/employee --remotes=login --dynamic