This example shows how to use the Image Component in Next.js 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-component.nextjs.gallery/
Preview the example live on StackBlitz:
Deploy the example using Vercel:
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example image-component image-app
# or
yarn create next-app --example image-component image-app
Deploy it to the cloud with Vercel (Documentation).