You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use React Native with Hermes but without Flipper because of incompatibility with some Firebase libraries.
So, I start yarn redux-devtools --hostname=localhost --port=8000 --open, start the Metro server and I've configured the store (with RTK Query) like so:
I use React Native with Hermes but without Flipper because of incompatibility with some Firebase libraries.
So, I start yarn redux-devtools --hostname=localhost --port=8000 --open, start the Metro server and I've configured the store (with RTK Query) like so:
import devToolsEnhancer from 'remote-redux-devtools';
[...]
const store = configureStore({
reducer: persistedReducer,
middleware: getDefaultMiddleware =>
getDefaultMiddleware({
serializableCheck: {
ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER],
},
}).concat(...middlewares),
devTools: false,
enhancers: [devToolsEnhancer({realtime: true, port: 8000})],
});
All it works but every 20 seconds I got from Metro: [SocketProtocolError: Client pong timed out]
Any suggestion?
The text was updated successfully, but these errors were encountered: