Image from 'next/image' ;
Error: Invalid src prop (https://image.tmdb.org/t/p/w500/pFlaoHTZeyNkG83vxsAJiGzfSsa.jpg) on
next/image
, hostname "image.tmdb.org" is not configured under images in yournext.config.js
해결안
module.exports = {
images: {
domains: ['tmdb.org', 'themoviedb.org','image.tmdb.org'],
},
};