반응형
메모용이긴 한데..
Next.js 에서 외부 이미지 사용시 뜨는 오류이다.
Next.js 버전이 올라가면서 해결 방법이 바뀌어서 메모메모..
next.config.js 아래에 아래 내용을 적어주면 됩니다~
images:{
remotePatterns: [
{
protocol: 'https',
hostname: '~~.cloudfront.net',
port: '',
pathname: '/**',
},
],
}
hostname 정도만 이미지의 hostname으로 변경해 주시면 됩니다!
반응형
'Programming' 카테고리의 다른 글
[Next.js] localstorage is not defined (0) | 2023.03.25 |
---|---|
[Next.js] Next.js Store redux (0) | 2023.03.23 |
[Laravel] Response 관리 (0) | 2023.02.21 |
[AWS] ACM + Route53을 이용한 SSL(Https) 인증서 발급 (8) | 2022.05.04 |
laravel.log could not be opened in append mode: failed to o pen stream: Permission denied (0) | 2022.05.03 |