You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @manfredsteyer ,
I have some doubts related to your repository.
You are using a global package.json instead of individual application-level package.json files. Assuming the number of applications increases in the future, how will you manage your packages across the applications? Additionally, how will you handle your webpack.config.js?
Hello @manfredsteyer ,
I have some doubts related to your repository.
You are using a global package.json instead of individual application-level package.json files. Assuming the number of applications increases in the future, how will you manage your packages across the applications? Additionally, how will you handle your webpack.config.js?
root-project/
│
├── package.json
├── node_modules/
│
└── projects/
├── MFE1/
│ ├── package.json
│ └── ...
├── MFE2/
│ ├── package.json
│ └── ...
├── MFE3/
│ ├── package.json
│ └── ...
.
.
.
.
├── MFEn/
│ ├── package.json
│ └── ...
└── ...
The text was updated successfully, but these errors were encountered: