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
The file line: https://github.com/gaearon/redux-devtools-log-monitor/blob/master/src/LogMonitor.js#L10
import debounce from 'lodash.debounce';
Should be:
import debounce from 'lodash/debounce';
So that not load the whole lodash library.
(Because I want logger be included in production mode with a switch to turn on or off)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The file line: https://github.com/gaearon/redux-devtools-log-monitor/blob/master/src/LogMonitor.js#L10
Should be:
So that not load the whole lodash library.
(Because I want logger be included in production mode with a switch to turn on or off)
The text was updated successfully, but these errors were encountered: