next config

강 진성·2024년 6월 22일
0

Next

목록 보기
6/8
post-thumbnail

<Image> 태그에 외부 이미지 가져오려면

/** @type {import('next').NextConfig} */
const nextConfig = {
  images: {
    remotePatterns: [
      {
        protocol: 'https',
        hostname: 'www.example.com',
      }
    ]
  }
}

module.exports = nextConfig
profile
완전완전완전초보초보초보

0개의 댓글