A non-serializable value was detected in an action, in the path:
type
- Redux Toolkit 에서 자동으로 생성해주는 action 객체가 action 생성자 함수 형태이기 때문
- type 의 인자로 string 값이 전달되지 않고 함수가 전달되어 발생한 오류
매우 드물게 필요한 경우에만 수행되어야 하며,
불가피할 경우 아래와 같이 미들웨어를 추가하여 해결하는 방법도 존재
const store = configureStore({
reducer: rootReducer,
middleware: (getDefaultMiddleware) =>
getDefaultMiddleware({
serializableCheck: false,
}),
});