This could be related to next.js not aware of the domains to fetch from. You should add the domain to next.config file. Here's an examle:
module.exports = { images: { domains: ['example.com'], }, }
Check here for futher explanation