Changelog

vitejs/vite · · 1 commit

Preload path gets faster in build output

Build preload logic now skips settling undefined deps, trimming unnecessary Promise work and slightly changing sourcemap output.

Build preload performance improved (StirStudiose6f6b3e)

The build-time preload helper now filters out undefined entries before calling Promise.allSettled, avoiding extra Promise.resolve overhead for deps that are already skipped. This is a small but meaningful performance tweak in the generated preload path, with the test fixture updated to reflect the resulting sourcemap shift.

Other misc changes

  • None