"redux-devtools-extension" gets laggy and eventually crashes when I try to open it.
See original GitHub issueAs soon as I click on the redux dev tools extension in chrome & firefox after some actions are dispatched the extension becomes unresponsive and the browser window freezes.
I checked out issue #347 and tried to find how to set maxAge, but was unable to find how to set maxAge for redux-devtools-extension
My store.js file looks like this:
import { createStore, applyMiddleware } from "redux";
import thunk from "redux-thunk";
import { composeWithDevTools } from "redux-devtools-extension";
import rootReducer from "./rootReducer";
const store = createStore(
rootReducer,
composeWithDevTools(applyMiddleware(thunk))
);
export default store;
Is there already a fix for this? Thanks for your time 🙂
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Use sanitizers to avoid Redux Devtools crash
Recently I was having a lot of trouble using Redux Devtools in a project, it was interesting that I could access the tools...
Read more >Redux Tutorial: An Overview and Walkthrough - Tania Rascia
Easily keep track of changes with Redux DevTools - any action or state change is tracked and easy to follow with Redux. The...
Read more >Redux DevTools: Tips and tricks for faster debugging
We will look into some extraordinary features that Redux DevTool offers that can help you debug your applications faster.
Read more >Bughunting your React web applications using DevTools
What if I told you that by simply using Redux DevTools we will be able to bypass security gates that you didn't realize...
Read more >Chrome Redux DevTools crashes when Route changes
After updating NgRx to 6.1.0 from 4 I am seeing an issue with Redux DevTools Extension. It crashes every time the route changes....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@bhatvikrant It’s up to you, but there is a way to exclude it from your production build.
No problem!