This example shows how to use the Legacy Image Component in Next.js to serve optimized, responsive images.
The index page (pages/index.js
) has a couple images, one internal image and one external image. In next.config.js
, the domains
property is used to enable external images. The other pages demonstrate the different layouts. Run or deploy the app to see how it works!
https://image-legacy-component.nextjs.gallery
Deploy the example using Vercel or preview live with StackBlitz
Execute create-next-app
with npm, Yarn, or pnpm to bootstrap the example:
npx create-next-app --example image-legacy-component image-app
# or
yarn create next-app --example image-legacy-component image-app
# or
pnpm create next-app --example image-legacy-component image-app
Deploy it to the cloud with Vercel (Documentation).