I got this error on my console when I tried to get the server data.

react_devtools_backend.js:3973 Application state or actions payloads are too large making Redux DevTools serialization slow and consuming a lot of memory. See https://git.io/fpcP5 on how to configure it.
I understand that I need to set up the store again, but can I set up sanitize with the configureStore? or should I use createStore and install redux-devtools-extension?
This is my store setup code
export const store = configureStore({
reducer: rootReducer,
middleware: (getDefaultMiddleware) =>
getDefaultMiddleware({
serializableCheck: {
ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER],
warnAfter: 128,
},
immutableCheck: false,
}),
devTools: process.env.NODE_ENV !== "production",
});
export type RootState = ReturnType<typeof appReducer>;
export type AppDispatch = typeof store.dispatch;
You can pass all the devtools options into
configureStore: