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
Using named imports for lodash includes the whole of Lodash into the bundle. We can try default imports for a smaller bundle.
From: import { mapValues } from 'lodash'
import { mapValues } from 'lodash'
To: import mapValues from 'lodash/mapValues'
import mapValues from 'lodash/mapValues'
The text was updated successfully, but these errors were encountered:
Pinging @elastic/apm-ui (Team:apm)
Sorry, something went wrong.
Since Lodash is now in shared deps, we want to do the opposite. See #78438, #78156, #78100.
Successfully merging a pull request may close this issue.
Using named imports for lodash includes the whole of Lodash into the bundle. We can try default imports for a smaller bundle.
From:
import { mapValues } from 'lodash'
To:
import mapValues from 'lodash/mapValues'
The text was updated successfully, but these errors were encountered: