module-federation / module-federation-examples

Implementation examples of module federation , by the creators of module federation
https://module-federation.io/
MIT License
5.61k stars 1.74k forks source link

angular11-microfrontends/projects/mdmf-profile is not working #505

Closed flyyuan closed 3 years ago

flyyuan commented 3 years ago

run yarn ng serve mdmf-profile

consumes:133 Uncaught Error: Shared module is not available for eager consumption: 1159 at Object.webpack_modules. (consumes:133) at webpack_require (bootstrap:18) at Module.8272 (environment.ts:16) at webpack_require (bootstrap:18) at checkDeferredModulesImpl (jsonp chunk loading:77) at Function.webpack_require.x (jsonp chunk loading:95) at startup:2 at startup:2

ydmitry commented 3 years ago

Consider add eager: true in webpack config

'@angular/core': {
  eager: true, // Add this
},
flyyuan commented 3 years ago

It is work~thank