Hello,
On my product page, some time my images are very slow to show... Here is some example of long waiting time.
What can I do to avoid this issue ?
Hello,
On my product page, some time my images are very slow to show... Here is some example of long waiting time.
What can I do to avoid this issue ?
Hello @maxime.hersand!
Everything looks alright in your screenshots. Experiencing a delay can happen from time to time due to different factors:
If you notice you experience slow downloads consistently on production, this can hint an issue so let us know! If it's only anecdotic, then it should be alright. In the meantime, an optimization you could do is using DNS-prefetch tags in the head
or your website to preconnect to Prismic images and assets CDN:
<!-- Preconnect to Prismic raster image CDN (png, jpg, etc.) -->
<link rel="preconnect" href="https://images.prismic.io" crossorigin />
<link rel="dns-prefetch" href="https://images.prismic.io" />
<!-- Preconnect to Prismic other assets CDN (svg, pdf, mp3, etc.) -->
<link rel="preconnect" href="https://prismic-io.s3.amazonaws.com" crossorigin />
<link rel="dns-prefetch" href="https://prismic-io.s3.amazonaws.com" />
Let us know if anything else comes up!
This thread has been closed due to inactivity. Flag to reopen.