PR Summary

What problems was I solving

The logger-context-otel Vite configuration contained a build: { minify: false } block that was never exercised because the project defines no build Nx target, and an empty test.globalSetup: [] array that is semantically identical to omitting the key. These were leftover copy-paste boilerplate that added noise without affecting behavior.

What user-facing changes did I ship

No user-facing changes. This is an internal cleanup to an unused Vite configuration block.

How I implemented it

Removed the two dead lines from architect/logger-context-otel/vite.config.ts: the unused build options map and the empty globalSetup array under test. The remaining config still merges baseConfig with the package-specific test environment, include pattern, timeouts, and coverage directory.

Description for the changelog

Removed dead Vite configuration (build.minify and an empty test.globalSetup) from architect/logger-context-otel because the project has no build target and an empty globalSetup is equivalent to omitting the key.

logger-context-otel: remove dead Vite/Nx config

low1 file
Removes unused `build.minify` and empty `test.globalSetup` entries from the logger-context-otel Vite config because they never affect builds or tests.