# Optimized CDN caching and deploying of immutable static assets

DevFeed: [Optimized CDN caching and deploying of immutable static assets](<https://devfeed.tech/articles/optimized-cdn-caching-and-deploying-of-immutable-static-assets-1037.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/optimized-cdn-caching-and-deploying-of-immutable-static-assets>)

Author: Niklas Mischkulnig

Published: 2026-07-17T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Vercel](<https://devfeed.tech/topics/vercel.md>), [Caching](<https://devfeed.tech/topics/caching.md>), [Cache](<https://devfeed.tech/topics/cache.md>), [Optimization](<https://devfeed.tech/topics/optimization.md>), [Next.js](<https://devfeed.tech/topics/next-js.md>), [toolchain](<https://devfeed.tech/topics/toolchain.md>)

Tags: [cache](<https://devfeed.tech/tags/cache.md>), [caching](<https://devfeed.tech/tags/caching.md>), [cdn](<https://devfeed.tech/tags/cdn.md>), [next-js](<https://devfeed.tech/tags/next-js.md>), [optimization](<https://devfeed.tech/tags/optimization.md>), [toolchain](<https://devfeed.tech/tags/toolchain.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

Vercel now reuses immutable, content-addressed static assets across deployments for supported frameworks. The zero-configuration optimization reduces CDN requests and transferred bytes, speeds deployments, and can significantly lower global time to first byte. Next.js 16.3 preview and later support it by default, with additional framework support planned.

## Source excerpt

Vercel now reuses static files across deployments for frameworks that output content-addressed assets. It's zero-config: Vercel uses Framework-defined infrastructure to manage these immutable files alongside your code changes, handling the hard parts like hash collisions, file lifecycles, and efficient routing. This brings several benefits: Lower costs and improved cache hit rates -- For frameworks using query-parameter-based Skew Protection (such as Next.js), we saw 17% fewer CDN requests and 24% fewer bytes transferred for static content. Faster Deployments -- Deployments complete up to 30% faster on average. Faster Time to First Byte -- Immutable assets can remain cached across deployments, giving frequently deployed projects up to a 60% reduction in global TTFB. Vercel's supported frameworks will automatically take advantage of this optimization, even for projects without Skew Protection enabled. Next.js 16.3 preview and later already have it enabled out of the box, and support for additional frameworks (including Nitro) is coming soon. No configuration is required: upgrading to a supported framework version is all you need to do. If you're a framework author and want to implement this in your own toolchain, see the immutable static files section of the Build Output API docs. Read more