PR Summary

What problems was I solving

The frontend-assets Vite configuration contained a build: { minify: false } block, but that Nx project only defines typecheck, lint, and code-quality targets—there is no build target or Vite build invocation, so the setting was dead on arrival.

What user-facing changes did I ship

None. This change only removes unused build-tool configuration and does not affect any shipped UI, API, or behavior.

How I implemented it

Deleted the unused build.minify object from architect/frontend-assets/vite.config.ts, leaving the test-only Vitest configuration unchanged.

Description for the changelog

Removed the unused build.minify: false block from architect/frontend-assets/vite.config.ts. The frontend-assets project has no Vite or Nx build target, so this configuration was never exercised and its removal has no runtime or user-facing impact.

frontend-assets Vite dead build config

low1 file
Removes an unused `build.minify: false` block from the frontend-assets Vite config.