question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

"redux-devtools-extension" gets laggy and eventually crashes when I try to open it.

See original GitHub issue

As 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:closed
  • Created 3 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
Methuselah96commented, Sep 23, 2020

@bhatvikrant It’s up to you, but there is a way to exclude it from your production build.

0reactions
Methuselah96commented, Sep 23, 2020

No problem!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found