mainfest.json 오류 해결

lovely·2022년 12월 13일
0
post-thumbnail
post-custom-banner

리액트에서 db.json을 불러오다가
충돌이 일어났는지 오류가 뜰 때 간단 해결입니다.

ERROR
Manifest: Line: 1, column: 1, Syntax error.

해결방법은 간단합니다.
index.html을 열고
mainfest앞에 슬래시(/)를 추가해주면 됩니다.

    //오류가 난 코드 
 <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

    //mainfest앞에 슬래시(/) 추가
  <link rel="/manifest" href="%PUBLIC_URL%/manifest.json" />
profile
the best FE (will be..)

0개의 댓글