React

[React] 탭 수정

seung_hyeon 2024. 12. 8. 19:28

 

탭 title 수정

document.title = "HOMERUN";

 

 

탭 이미지 수정

const changeFavicon = (iconURL) => {
  const link = document.querySelector("link[rel~='icon']");
  if (link) {
    link.href = iconURL;
  } else {
    const newLink = document.createElement("link");
    newLink.rel = "icon";
    newLink.href = iconURL;
    document.head.appendChild(newLink);
  }
};

changeFavicon("/icon.png");

→. png는 public 파일 안에 넣어야 함

 


수정 전

 

수정 후