remote-redux-devtools
remote-redux-devtools copied to clipboard
Some configuration mistakes in my React-Native project?
Hello,I just started using devtools. I can see the store-tree in Chat ,but I don't see any response in Inspector when I click the Add button... Thanks
const store = createStore(
reducers,
initialState,
compose(
applyMiddleware(thunk),
devTools()
)
);
That's related to https://github.com/jhen0409/remote-redux-devtools-on-debugger/issues/14.
In [email protected]
there's a bug, which blocks any websockets when in dev mode. You have to click "Stop Remote JS Debugging" to get it work.
Seems that problem is solved on [email protected]
.
@naivehhr, could you please confirm?
Thanks for your reply~ Recently a little busy work, I will continue to focus on this problem. “Stop Remote JS Debugging” didn't work for me, I will be in the futureon [email protected] keep trying.☺
Same here, "Stop Remote JS Debugging" didn't fix it either :(
Both the console and react elements inspector work, only the redux inspector part is blank.
only the redux inspector part is blank
Most likely, you don't have process.env.NODE_ENV === 'development'
. In this case just set realtime
parameter to true
, and don;t forget to exclude devtools from production.