외부 src 에러
Next/image가 외부 이미지를 import 해오지 못하는 문제
lostgold 페이지 작업중에 OpenAPI에서 받아온 외부 이미지를 Next/Image src에 지정해줬더니 다음과 같은 에러가 발생했다 On one of your pages that leverages the next/image component, you passed a src value that uses a hostname in the URL that isn't defined in the images.domains config in next.config.js. src에 들어가는 도메인을 next.config.js에 미리 정의해줘야 한다고 한다. 다음과 같은 방법으로 해결했다. 해결방법 우선 next.config.js 파일에 들어가서 다음과 같이 domains를 정의해주었다 const nextConf..