Unexpected token u in JSON at position 0
본문 바로가기
ERROR

Unexpected token u in JSON at position 0

by 쏠수있어ㅤ 2022. 1. 12.
반응형

 

npm run dev 명령어 실행 후 나온 에러 

Unexpected token u in JSON at position 0

 

찾아보니 JSON.parse() 에 () <- 괄호 안에 undefined일 거라는 의견이 많았다. 

upexpected token u <- 요 u 가 'undefined'의 'u'인 것 같다. 

 

"JSON.parse" 를 검색하여 코드를 찾아보니 firebase 연결하는 JSON.parse(firebaseConfig)에 firebaseConfig 설정이 안되어 있던것 ! 

firebaseConfig가 정해진 게 없었어서 undefined여서 해당 에러가 났다. 

 

해결법 : 

JSON.parse 로 코드를 찾아서 안의 내용을 확인해 주기 !! 

 

반응형

댓글