PR Summary

What problems was I solving

The architect/flexi-builder/vite.config.ts file contained a build: { minify: false } block that was never read. The flexi-builder project has no Nx build target, so Vite is only used in test mode via Vitest, making this configuration a copy-paste artifact that added noise and could mislead future maintainers.

What user-facing changes did I ship

None. This is a dead-code cleanup in a test-only configuration file; there are no runtime, build, or user-visible changes.

How I implemented it

Removed the four-line unused build object from architect/flexi-builder/vite.config.ts, leaving the Vitest test configuration and the merge with vitest.base.config.ts unchanged.

Description for the changelog

Removed the unused build: { minify: false } block from architect/flexi-builder/vite.config.ts. The flexi-builder project has no Nx build target, so the config is consumed only by Vitest and the removal has no functional impact.

flexi-builder Vitest config cleanup

low1 file
Remove unused `build.minify: false` block from flexi-builder's Vite config; the project has no Nx build target, so the config is only consumed by Vitest.