본문 바로가기

Javascript Tips

react.js) index.html에 로고 에러나오는 현상

728x90

 

    <link rel="icon" href="logo-default.png" />

index.html에

위와 같이 설정하면

에러가 난다. 

 

이를 해결해주기 위해선

다음과 같이 설정해주면 된다.

 

    <link rel="icon" href="%PUBLIC_URL%/logo-default.png" />

PUBLIC_URL은

index.html파일 이있는

public 폴더를 의미한다.