[nextjs]호스팅 이미지 에러

코드왕·2023년 10월 9일

이미지의 로딩 에러가 뜰 때 방법

next.config.js파일에가서...

/** @type {import('next').NextConfig} */
const nextConfig = {
  images:{
    domains: ['freepeopleimage.s3.ap-northeast-2.amazonaws.com', 'localhost']
  }
}

module.exports = nextConfig
profile
CODE DIVE!

0개의 댓글