Next.js/기초

[TIL] nextJS에 이미지 url 넣기

developeryeon 2024. 3. 15. 03:26
/** @type {import('next').NextConfig} */

const nextConfig = {
	images: {
		remotePatterns: [
			{
				protocol: 'https',
				hostname: 'i.example',
			},
		],
	},
};

export default nextConfig;

 

이미지가 말썽..

next.config.mjs 에 찾아서 들어가보니 해결..