[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # Upload image to Vercel's CDN without Image tag optimization 79 views · 0 likes · 5 posts Jaaja321 (@jaaja321) · 2025-08-02 **I already have preoptimized images in my remote storage and i want them to be cached in Vercel's CDN** `<Image unoptimized={true}/>` isn't uploading image to CDN Headers for image didn't work either ``` 'Cache-Control': 'public, max-age=3600', 'CDN-Cache-Control': 'max-age=60', 'Vercel-CDN-Cache-Control': 'max-age=3600' ``` And in Vercel's API it seems to be nothing If anyone knows how to do it,please help Swarnava Sengupta (@swarnava) · 2025-08-03 You can either use `unoptimized` prop individually: ```js import Image from 'next/image' const UnoptimizedImage = (props) => { // Default is false return <Image {...props} unoptimized /> } ``` or set the value globally for all images in `next.config.js` ```js module.exports = { images: { unoptimized: true, }, } ``` https://nextjs.org/docs/app/api-reference/components/image#unoptimized Jaaja321 (@jaaja321) · 2025-08-03 i even just tried this,guessing that maybe answer is not like "no" but seems like it because this part of docs is saying `true`: The source image will be served as-is from the `src` instead of changing quality, size, or format. Swarnava Sengupta (@swarnava) · 2025-08-03 You need to also purge CDN cache to invalidate old images: https://vercel.com/changelog/manually-purge-the-cdn-cache system (@system) · 2026-01-20 Hey @jaaja321! 👋 Just checking in on this thread. If you're still experiencing issues or have additional details to share, please let us know! We're here to help.