
[Next.js] Image 경고(LCP, 종횡비) 해결하기
·
트러블 슈팅
1. LCP 경고Next.js 프로젝트에서 랜딩페이지, 로그인 페이지에 로고 이미지를 넣었더니 이런 콘솔 경고가 떴다.Image with src "/images/swith-logo.png" was detected as the Largest Contentful Paint (LCP). Please add the "priority" property if this image is above the fold.Read more: https://nextjs.org/docs/api-reference/next/image#priority경고 내용은 로고 이미지가 LCP로 추정이 되었는데 priority 속성을 넣어주지 않았다고 한다.알아보니 Next.js의 Image 컴포넌트에서 priority 속성은 이미지 로딩의 우선..