Changelog

vitejs/vite · · 3 commits

Bundled dev fixes HTML injection order

Vite fixes bundled-dev HTML script ordering, updates HTML e2e coverage, and drops an obsolete release-age exclude.

Bundled dev now injects its client runtime before chunk scripts (h-a-n-aeac0cc8)

The bundled dev server now prepends the dev client module in HTML before other chunk scripts, which should ensure the runtime is available earlier during serve mode. The change also centralizes the client filename constant and removes the old entry-script prefixing logic from the bundled output path.

HTML playground coverage now reflects bundled vs unbundled behavior (h-a-n-aad55e34)

The HTML e2e test now keys off bundled-dev mode instead of generic build/serve checks, and its expectations were updated to match the current injected copy. It also tightens a couple of assertions and re-enables the HTML playground in the bundled-dev test matrix.

Other misc changes

  • Removed an outdated minimumReleaseAgeExclude entry from pnpm workspace config (btead62b336)