Next.js Discord

Discord Forum

redux toolkit presist serilization error with Next js

Unanswered
Carpenter wasp posted this in #help-forum
Open in Discord
Original message was deleted.

1 Reply

Carpenter wasp
If i remove redux presist the error goes away. So its redux presist issue i guess if it helps here is my index.js
import { configureStore } from '@reduxjs/toolkit';
import cartReducer from './state/cartSlice';

export const store = configureStore({
  reducer: {
    cart: cartReducer,
  },
});