Create a food ordering app with Strapi and Next.js 2/7

Hi there,
it is indeed a great tutorial.
I ran into same problem with the new version of strapi to show the images of the restaurant list. Thanks for the tip.
Also you will have to change the hostname from localhost to 127.0.0.1 in the next.config.js

const nextConfig = {
	reactStrictMode: true,
	images: {
		remotePatterns: [
			{
				protocol: 'http',
				hostname: '127.0.0.1',
				port: '1337',
				pathname: '/uploads/**',
			},
		],
	},
};

I did work for me,