728x90
반응형
SerializableStateInvariantMiddleware took 42ms, which is more than the warning threshold of 32ms.
If your state or actions are very large, you may want to disable the middleware as it might cause too much of a slowdown in development mode. See https://redux-toolkit.js.org/api/getDefaultMiddleware for instructions
경고처리
const store = configureStore({
reducer:{
rootReducer
},
middleware: (getDefaultMiddleware) => getDefaultMiddleware({
immutableCheck: false,
serializableCheck: false,
})
})
export default store;
https://stackoverflow.com/questions/65217815/redux-handling-really-large-state-object
728x90
반응형
'React Native' 카테고리의 다른 글
React native 큰 이미지 스와이프하면서(?) 보기 (1) | 2023.06.15 |
---|---|
React native - 컬렉션 변환 (0) | 2023.02.02 |
React Native Module 에서 데이터 Callback 시 Type 에러.. (0) | 2022.11.17 |
typeScript ) 자식에게 함수 전달. (0) | 2022.09.19 |
react native new Map() 컬랙션 사용하기 (0) | 2022.09.15 |