Hey
I have a site that's main job is to show users a lot of images on the page the moment the user joins the page. So lazy loading etc etc won't really help me.
Is there a way to start preloading my cdn images and cache them right away when the user first opens the nextjs app in any route?
These images come from cdn and never change. There is about 300 images so I really don't want to move them to static images to ./public
The point is, these images have to be fast and the cdn urls are known beforehand and they never change. How can I
display these 300 images on my page in the most optimized way?
Can I somehow preload these 300 urls and chace them