DEV Community

Discussion on: Migrating a 150K LOC codebase to Vite and ESBuild: is it worthwhile? (part 3/3)

Collapse
 
noriste profile image
Stefano Magni

Does your webpack config has the react-refresh plugin

Yes, it has, I'll double-check if it's configured the right way, thanks 😊

does your project use yarn workspaces

Yes, the only noticable thing is that the dependencies are installedin the top-level node_modules while Vite's cache is stored in the local node_modules.

have you compared Vite with alternatives like Snowpack?

Yes, Vite's advantage is that has batteris included for targeting non-ESModules compatible browsers.

Collapse
 
brunolemos profile image
Bruno Lemos

Got it, thanks! I'll experiment with Vite on my next product.