-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace CRA with Webpack + Node 18 #320
Conversation
Something went wrong with PR preview build please check |
1 similar comment
Something went wrong with PR preview build please check |
Something went wrong with PR preview build please check |
Preview is available here: |
"vendor-wallets": { | ||
test: /[\\/]node_modules[\\/](@albedo|@ledgerhq|trezor)[\\/]/, | ||
name: "vendor-wallets", | ||
chunks: "all", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this organization of node_modules! From the docs, my assumption this is a way to make sure we don't duplicate any of these libs (thus reducing bloat). Is that what your aim is here? Curious if there are any other benefits I'm missing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I remember correctly this is to make the generated file smaller by adding these only once. It was initially done in the Account Viewer in this PR. Looks like it was a lot of trial and error to get it right. 😅
No description provided.