인프런 커뮤니티 질문&답변

Next님의 프로필 이미지

작성한 질문수

Next + React Query로 SNS 서비스 만들기

faker.js와 /photo/[photoId]

[28강 오류 해결] https://loremflickr.com 외부 이미지 불러오기 오류

해결된 질문

24.03.09 13:41 작성

·

338

·

수정됨

2

Invalid src prop (https://loremflickr.com/640/480?lock=5661426936971264) on `next/image`, hostname "loremflickr.com" is not configured under images in your `next.config.js`

 

faker를 통해 https://loremflickr.com 에서 외부 이미지를 가져올 때 위 오류 발생하시는 분들은 next.config.js 또는 next.config.mjs에 아래와 같이 추가해주시면 됩니다.

 

/** @type {import('next').NextConfig} */
const nextConfig = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "loremflickr.com",
        port: "",
        pathname: "/640/480/**",
      },
    ],
  },
};

export default nextConfig;

답변

답변을 기다리고 있는 질문이에요
첫번째 답변을 남겨보세요!
Next님의 프로필 이미지

작성한 질문수

질문하기