My micro-frontend angular project is using mfe (module federation). I recently updated it from angular 13 to 14 and encountered some warnings such as:
node_modules\ngx-translate-multi-http-loader\dist\multi-http-loader.js depends on 'deepmerge'. CommonJS or AMD dependencies can cause optimization bailouts.
I attempted the following change in my angular.json
file:
"allowedCommonJsDependencies": ["lodash"]
Unfortunately, this solution did not resolve the issue.