500 errors not reported/thrown by Nuxt, error diagnosis is difficult
When Nuxt Image has an error there is no error reported or thrown in Nuxt. This makes it very difficult to find out when there is an error or what the cause of it is.
Example:
If there's a URL which is having an issue, you'll get a 500 response code in the browser and an error message like this:
URL: http://localhost:3000/ipx//https://website.com/myimage.png Response Code: 500
{
"error": {
"message": "[500] [IPX_ERROR] terminated"
}
}
However, the Nuxt node app doesn't actually report an error in the terminal, there's no log, no error message, and tools like Sentry won't capture it or report it.
It would be great if this could be reported in a more clear way so that we could capture or detect if there's something having a problem being rendered and what the error actually is.