Hello,
If you are facing error :
Unhandled Runtime Error
TypeError: Failed to construct 'URL': Invalid URL
And you already have following loader ‘imgix’ settings in your next.config.js file
images: {
// loader and path setting for android build to load nextjsimage and also on web on certain scenarios!
loader: 'imgix',
path: '/', // Remove the path prefix for production images
domains: [
'xxx.com',
'*.xxx.com',
'aaa.xxx.com',
'via.placeholder.com',
],
}
To fix this the solution provided here worked out well!
Code snippet solution: source page stackoverflow
const loaderProp =({ src }) => {
return src;
}
<Image
src={currentImage.imageurl}
alt={currentImage.imageurl}
layout="fill"
className={styles.imageSize}
loader={loaderProp}
/>
we just need to add loader prop to the Image tag of next.js component and passdown the callback function which resolves the error above, voila!
Hope this also help you if you are facing this solution in your next.js application.
happy learning!