We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lodash is being imported with this syntax:
import _ from 'lodash';
This is bad for bundle size as the entire Lodash library is being imported. Instead, the import statements should look like this:
import _get from 'lodash/get'; import _isEqual from 'lodash/isEqual'; import _findIndex from 'lodash/findIndex'; import _assign from 'lodash/assign';
The text was updated successfully, but these errors were encountered:
This issue has been resolved. Thanks!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Lodash is being imported with this syntax:
This is bad for bundle size as the entire Lodash library is being imported. Instead, the import statements should look like this:
The text was updated successfully, but these errors were encountered: