javascript / intermediate
Snippet
Optimizing LCP with Priority Images
The priority property on the Next.js Image component ensures that critical above-the-fold images are preloaded by the browser, significantly improving the Largest Contentful Paint (LCP) metric.
snippet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Image from 'next/image';export default function Hero() {return (<div className="hero-container"><Imagesrc="/hero-banner.jpg"alt="Hero Banner"width={1200}height={600}priorityclassName="object-cover"/></div>);}
nextjs
Breakdown
1
priority
Tells Next.js to preload this image instead of lazy loading it, which is the default behavior.