Config Images in Next.js 13 in next.congif.jsMandeep Singh·Aug 2, 2023·1 min read/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { remotePatterns: [ { protocol: 'https', hostname: '**.exmpale.com', port: '', pathname: '/upload/images/product/**', }, ], }, } module.exports = nextConfig Next.jsimages Share this