You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Nuxt to SSR the content of my page. When I look at rendered page content I see that all my images are just black 1px image which is used in the src-placeholder attribute. Is it needed to provide a fallback with regular img inside noscript tag when v-lazy-image is used or it automatically handles clients that don't support scroll similar to how lazysizes does it?
The text was updated successfully, but these errors were encountered:
Awesome point @AndrewBogdanovTSS. That's a case actually not handled. A nice and easy fix for that would be checking if window exists, and if not then use src as srcPlaceholder
I use Nuxt to SSR the content of my page. When I look at rendered page content I see that all my images are just black 1px image which is used in the
src-placeholder
attribute. Is it needed to provide a fallback with regularimg
insidenoscript
tag whenv-lazy-image
is used or it automatically handles clients that don't support scroll similar to how lazysizes does it?The text was updated successfully, but these errors were encountered: