Skip to content

❗️ detected as the Largest Contentful Paint (LCP)

Dusuna 두선아 edited this page Aug 14, 2024 · 1 revision

image

예시와 같이 LCP에 해당하는 CarouselItem의 로딩 속도를 개선하기 위해 Image 컴포넌트의 priority를 설정할 수 있습니다. image

<Image
  src={src}
  alt={`thumbnail image ${thumbnail.id}`}
  className="rounded-md object-cover border"
  fill
  onError={handleError}
  priority={idx <= 1}
/>

Clone this wiki locally