728x90
<link rel="icon" href="logo-default.png" />
index.html에
위와 같이 설정하면
에러가 난다.
이를 해결해주기 위해선
다음과 같이 설정해주면 된다.
<link rel="icon" href="%PUBLIC_URL%/logo-default.png" />
PUBLIC_URL은
index.html파일 이있는
public 폴더를 의미한다.
'Javascript Tips' 카테고리의 다른 글
이미지 퍼블할 때 임시로 넣는 좋은 사이트 (0) | 2024.09.08 |
---|---|
react spa - boot 3 ) kakao 소셜로그인 연동 (0) | 2024.06.27 |
react) ip숨김처리 문제로 node 서버가 안 켜지는 경우(Invalid options object. Dev Server has been initialized using an options object that does not match the API schema) (0) | 2024.06.20 |
react) spa reload시 img 깨지는 현상 (0) | 2024.06.01 |
react) vite + react 프로젝트 생성 (0) | 2024.04.23 |