Skip to content

Performance and SEO considerations when using blurry images #20

Closed Answered by johannschopplich
felixranesberger asked this question in Q&A
Discussion options

You must be logged in to vote

There's no direct answer, since the blurry image generation strategy depends on your use-case. Personally, I use client-side generation for SSR applications and client generation for SPA's.

Here are a few considerations:

Performance and efficiency:
If network latency is a big concern, it might make more sense to generate the data URI on the server side and send that down with the initial HTML payload. This approach would allow the image to start rendering immediately as the HTML is parsed and improve the overall performance of your page load. Rendering the image won't be delayed since the client won't need to wait for the JS bundle to execute.

SEO implications:
If SEO is a major concern f…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by johannschopplich
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants