[TIL] Error while parsing JSON - Unexpected token < in JSON at position 309

숭글·2022년 6월 17일
0

기타

목록 보기
6/13

Error while parsing JSON - Unexpected token < in JSON at position 309

에러가 떴다...
여러 에러가 한번에 돵도아돵 뜬 거 치고는 간단하게 해결됐다.

const persistConfig = {
    key: 'root',
    storage,
};

이 코드를

const persistConfig = {
    key: "root",
    storage,
};

위처럼 바꾸면 된다!!!!

' -> "

로 다 변경해줬다.

import { createSlice } from "@reduxjs/toolkit";

import문도 마찬가지!!

버전이 바뀐 것도 아닌데 잘 되다가 왜 갑자기 에러가 떴는지 의문이다..

profile
Hi!😁 I'm Soongle. Welcome to my Velog!!!

0개의 댓글