<Image> 태그에 외부 이미지 가져오려면
<Image>
/** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'www.example.com', } ] } } module.exports = nextConfig