PR Summary

What problems was I solving

The logger-context-temporal-workflow project contained a build: { minify: false } block in its vite.config.ts, but the project has no Nx build target and the config is only used by Vitest. This made the block dead, misleading copy-paste boilerplate.

What user-facing changes did I ship

No user-facing changes. This is a config cleanup with no effect on produced artifacts, tests, or runtime behavior.

How I implemented it

Deleted the unused build field from architect/logger-context-temporal-workflow/vite.config.ts, leaving the Vitest-specific settings (test.environment, test.include, timeouts, and coverage directory) unchanged.

Description for the changelog

Removed an inert build: { minify: false } block from logger-context-temporal-workflow/vite.config.ts. The project has no build target and the file is only used by Vitest, so this is a no-op cleanup with no behavior, artifact, or test changes.

Remove dead build config from logger-context-temporal-workflow

low1 file
Removes the unused `build: { minify: false }` block from the library's Vitest config because the project has no Nx build target.