Using a image file without query parameter

Is there any problem if I use an image URL without the query parameter in a product page?

For example, it will slow down the display of the product page.

e.g.)

https://cdn.shopify.com/s/files/1/2222/3333/4444/files/test.jpg?v=11111111

https://cdn.shopify.com/s/files/1/2222/3333/4444/files/test.jpg

Hey @heyuuuuu ,

The query parameter is used for cache busting. The version (v=1111) updates when you make a change (e.g. cropped) to the same image cause it has the same name. The version however will change. This tells the site to forget the cached image and load the newly updated one. But if you don’t make any changes to the image, the version will always stay the same, so there won’t be any slowing down. Having the version is better, if you remove it you might encounter instances where you make change to the same image but it’s not showing up at all because the old image with the same name is cached and there’s no version to tell it that there’s a change made.