nuxt / image

Plug-and-play image optimization for Nuxt applications.
https://image.nuxt.com
MIT License
1.32k stars 268 forks source link

[Vercel] Image Sizing Broken #1455

Open jaketig opened 2 weeks ago

jaketig commented 2 weeks ago

index.vue:

<NuxtImg src="/img/logo.png" height="130" alt="Bee Line Parks" />

1.7.1 on Vercel in Production:

Generated HTML:

<img onerror="this.setAttribute('data-error', 1)" data-v-a22f9b78="" src="/_vercel/image?url=%2Fimg%2Flogo.png&amp;w=2560&amp;q=100">

Screenshot: image

vs 1.7.0 on Vercel in Production

Generated HTML:

<img onerror="this.setAttribute('data-error', 1)" height="130" alt="Bee Line Parks" data-nuxt-img="" srcset="/_vercel/image?url=%2Fimg%2Flogo.png&amp;w=2560&amp;q=100 1x, /_vercel/image?url=%2Fimg%2Flogo.png&amp;w=2560&amp;q=100 2x" class="" src="/_vercel/image?url=%2Fimg%2Flogo.png&amp;w=2560&amp;q=100" data-v-a22f9b78="">

Screenshot: image

tomsdob commented 2 weeks ago

Facing the same issue, as you can see in your code, the alt attribute is also not generated.

Edit: #1445 fixes this.