# Vite 7 has reached stable adoption of Rolldown—a Rust-based bundler that replaces Esbuild and Rollup for production

**Date:** 2026-05-01  
**Tags:** WebDev, Rust, Performance, Vite  
**URL:** https://kelexine.is-a.dev/til/vite-7-rolldown

---

TIL: Vite 7 has reached stable adoption of Rolldown—a Rust-based bundler that replaces Esbuild and Rollup for production. Build times on my portfolio dropped by 45%. The transition is nearly seamless, though some legacy Rollup plugins need a compatibility shim.


```javascript
// vite.config.js in 2026
export default defineConfig({
  build: {
    bundler: 'rolldown', // Now the default in v7
    minify: 'oxc'      // Rust-powered minification
  }
})
```



**Related:** [https://vite.dev/blog/announcing-vite-7](https://vite.dev/blog/announcing-vite-7)


---

*This content is available at [kelexine.is-a.dev/til/vite-7-rolldown](https://kelexine.is-a.dev/til/vite-7-rolldown)*
