fix(@angular/build): isolate Vite cache per build configuration in dev server by maruthang · Pull Request #32944 · angular/angular-cli

@maruthang

…v server

Running two ng serve instances for the same project with different
configurations (e.g., different locales) caused "504 Outdated Optimize Dep"
errors because both instances shared the same Vite optimizer cache directory.

The fix includes the build configuration name in the Vite cache directory
path, preventing cache conflicts between concurrent dev server instances.

Closes angular#31700