import Image from 'next/legacy/image'
const LoaderExample = () => {
return (
Custom loader in both next.config.js and loader prop
{
if (config) {
return 'https://example.vercel.sh/error-unexpected-config'
}
return `https://example.vercel.sh/success/${src}?width=${width}`
}}
/>
)
}
export default LoaderExample