PR Summary

What problems was I solving

The browser-runtime Vite config contained a build: { minify: false } block even though the project has no Vite build target and the config is only used by vitest run. Vitest ignores the build section entirely, so this setting was dead code that could mislead readers into thinking a build/minification step exists.

What user-facing changes did I ship

No user-facing changes.

How I implemented it

Removed the four-line build: { minify: false } block from architect/browser-runtime/vite.config.ts. No other files were modified.

Description for the changelog

Removed an unused build.minify: false setting from the browser-runtime Vite config. The project is only invoked through Vitest, which ignores the build block, so this was a non-functional dead-code cleanup.

Remove dead build.minify from browser-runtime Vite config

low1 file
Remove unused `build.minify: false` from browser-runtime's Vite config since the project only runs tests and has no Vite build step.