DEV Community

Discussion on: Vite: Blazing-Fast Tooling That Could Change How You Code

Collapse
 
pavelloz profile image
Paweł Kowalski

Couple notes:
1) Vite uses rollup for prebundling, so it would be weird if it was faster ( source: vitejs.dev/ )
2) Webpack can use esbuild too ( source: github.com/privatenumber/esbuild-l... ) - and the speed difference, at least in small to medium projects is not noticeable, from my experience. See my starter to see how to configure it ( github.com/pavelloz/webpack-tailwi... )

Collapse
 
joelbonetr profile image
JoelBonetR 🥇

That's just what I came to say 😂
On the other hand I like Parcel for many small to medium projects as it requires no configuration so it's a faster hands down

Collapse
 
pavelloz profile image
Paweł Kowalski

True, true. Thats why i create "starters" for myself, so the starting point is the same, no matter if the tool is battery-included or bare bones.