DEV Community

Discussion on: Vite.js or How i became the fastest programmer alive.

Collapse
 
redbar0n profile image
Magne

The speed boost comes from Vite doing development in unbundled mode, using ESM only. So no need to use a bundler to produce a bundle when developing. You only need to bundle for production, where it currently uses Rollup, and will switch to esbuild when it becomes mature.