Progressive Image Loading with NextJS
How to implement progressive image loading with NextJS Image component (Includes App Router example)

Many front-end frameworks such as Gatsby come with progressive image loading out of the box. In this article, we look at how to achieve this with NextJS, using next/image
and plaiceholder
libraries.
Full code for examples can be found here on Github.
Examples in this article are based mostly on Pages Router, but if you are interested in the App Router version, see this repo instead.
next/image
component in Next 13. Read more at https://nextjs.org/docs/messages/next-image-upgrade-to-13.What is progressive image loading?
Progressive image loading is a strategy where the website displays a low resolution or placeholder image until the actual image is loaded and displayed. Compared to staring at a blank space, this improves user experience by providing awareness on incoming images.
Install dependencies
sharp
Using Next.js' built-in Image Optimization requires sharp as a dependency.
plaiceholder
When loading remote images, next/image
requires blurDataURL
if using placeholder="blur"
.
The following examples use Typescript & TailwindCSS. If you would like to follow along, grab this starter template which comes with everything you'll need.
Install the following dependencies:
Statically imported image files
For statically imported images, next/image
will automatically generate the blurDataURL
. Since we are using the fill
prop, wrap the component in a relative positioned <div>
and assign it width and height properties.
Remote images
Remote images can be either an absolute external URL, or an internal path. When using an external URL, you must add it to domains in next.config.js
.
Generate the image placeholder data at build time with getStaticProps
:
Real world examples
How about data fetched from an API? The approach is the similar; process the fetched data and generate placeholder data for the images at build time.
Image gallery
Blog posts
Contentful API - Images in Rich Text Field
Here's how to render images from rich text fields in Contentful using next/image
.
After fetching the data, loop through your rich text field to generate the placeholder data, and render the field with documentToReactComponents()
. Create a custom renderer for BLOCKS.EMBEDDED_ASSET
node type using renderOptions
and use the placeholder data.