-
Hello community! I have a situation where I have a base placeholder image that will have multiple named instances of the same image. Example: placeholder1.png = (placeholder.png) Each placeholder[x].png image is the exact same file as the base PNG image. What I'm wondering about, is if the Vercel image caching mechanism would be smart enough to realize that it could serve up the Root image automatically from the edge servers if it saw that it was the same file as placeholder[x].png? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 1 reply
-
Hey there! In short: different file name, different checksum, different cache keys. It'd be better to consider why you need |
Beta Was this translation helpful? Give feedback.
Hey there! In short: different file name, different checksum, different cache keys. It'd be better to consider why you need
placeholder[x].png
and whether there's an alternate method of using the same placeholder which doesn't rely on a file name change.