-
[error] nextjs Image 관련react 2023. 4. 16. 19:30반응형
Error: Invalid src prop (https://a.espncdn.com/i/teamlogos/nba/500/scoreboard/den.png) on `next/image`, hostname "a.espncdn.com" is not configured under images in your `next.config.js` See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host
관련 문서 :
https://nextjs.org/docs/basic-features/image-optimization#domainshttps://nextjs.org/docs/api-reference/next/image
방법 :
next.config.js 파일 에 이미지 불러오는 도메인 추가.
아래와 같이 도메인을 추가하는 방법이 있고 remotepattern 적용해주는 방법 2가지가 있음 remotepattern 으로 하면 프로토콜, host, path 와같이 좀더 세부적으로 설정할수도 있음module.exports = { images: { domains: ['a.espncdn.com'], }, }
'react' 카테고리의 다른 글
seo를 위해 고려할수 있는 사항 (0) 2023.05.16 [error] nextjs api routes vercel 배포시 504에러 (0) 2023.04.28 [react] s3에 여러 이미지 파일 업로드하기 (0) 2023.04.15 [Nextjs] dynamic import 에 대하여 (0) 2023.04.06 [react]리액트 되돌아보기 2 (0) 2022.11.08