-
Notifications
You must be signed in to change notification settings - Fork 226
Description
After moving from webpack to native federation I've noticed that surprisingly I've worst perfomance in local dev server with vite and esbuild than previously with webpack.
I am making some tests and trigering the rebuild with an small change takes a long time to complete.
`
Changes detected. Rebuilding...
{
"added": [],
"modified": [.......],
"removed": []
No output file changes.
Application bundle generation complete. [1.258 seconds]
INFO Building federation artefacts
INFO Done!
`
The bundle generation takes just 1.2 seconds, but the "Building federation artefacts" takes almost 35 seconds each time I make any change.
Considering my previous branch wich is currently working with Angular17 and webpack module federation it takes 2.4 seconds
I guess I've some configuration wrong, but I've double checked the migration notes and the example and my angular.json is almost the same.
https://github.com/angular-architects/module-federation-plugin/blob/main/libs/native-federation/migrate-appbuilder.md
https://github.com/manfredsteyer/module-federation-plugin-example/blob/nf-standalone-starter/angular.json
Did anybody faced something similar?
Best regards.