Vite released version 8.1 on June 23 with experimental bundled development mode and chunk import maps, plus stable support for WebAssembly ESM integration and more configurable HTML asset discovery. The official release post frames bundled development as an option for very large applications where serving thousands of individual modules becomes a startup and reload cost.
Development bundling targets scale limits
Vite’s familiar development model serves modules individually. In large graphs, the browser and local network stack must process many requests before a page is ready. The experimental experimental.bundledDev option instead serves browser-side bundles while retaining hot updates. Vite reports large gains in synthetic and early adopter tests, but also warns that third-party plugins and minor features may not work yet.
Experimental chunk import maps address production caching. A changed chunk normally changes the hashes of chunks that import it, which can cascade through the graph. An import map can separate references from content hashes and reduce unnecessary cache invalidation. The release notes a current incompatibility with experimental.renderBuiltUrl.
Vite 8.1 also allows direct imports from Wasm modules, adds case-insensitive matching to import.meta.glob, and lets custom HTML elements and attributes participate in asset discovery.
Pilot with plugin-heavy routes
Bundled development should start on the slowest representative route, not as a repository-wide switch. Capture cold startup, full reload, hot update, memory use, and browser request count. Then exercise framework plugins, virtual modules, CSS handling, source maps, and server-side rendering. A faster ready time is not useful if HMR applies stale state or a plugin silently skips a transform.
Chunk import maps require deployment checks for generated URLs, Content Security Policy, CDN caching, and older browsers. Keep both experiments opt-in and pin the Vite minor version during evaluation. The stable additions can move separately: test direct Wasm imports and custom asset sources with production builds, then adopt only the experimental modes whose measured benefit outweighs their compatibility surface.
- Vite 8.1 is out!
Vite · Jun 23, 2026
See the original announcement for availability and release details.