-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SEO Problem: Images will never be indexed #213
Comments
If an image is small enough it will be inlined like you mentioned above.
|
@shadow81627 Thank you for your response. The problem is, that it is not small enough - and all images get the same base64 String. You can have a look here: and here: |
@thomas4Bitcraft that is an awesome site. I think the img src is being set to a small inline image because of lazy loading you can see the inline image in the lazy mixin. You could try eager loading the images to see if the full image url is used. |
@thomas4Bitcraft as @shadow81627 says it is due to lazy loading. I have the same on my lazy loaded ( |
@shadow81627 @tanc you are right - that seems to be the problem. Do you have any ideas how to achieve both? So that google can index the images and at the same time the pagespeed does not crash? |
and by the way: @shadow81627 I'm glad you like it :) |
@danielroe I saw you made a pull request to fix this issue. Any news when this will be published? |
I just found out that in the PageSource itself all images have this format:
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="90" height="90" alt="" loading="lazy">
That is a total disaster for all SEO Crawlers as they will never index any of the images on the site. Why not just display the image-url with
/_ipx/
in the front?The text was updated successfully, but these errors were encountered: