PR Summary

What problems was I solving

The cloudflare-client library's vite.config.ts contained a build: { minify: false } block that was added when the module was extracted, but the project has never defined or inferred a build target. This made the configuration dead code that could confuse future maintainers and added unnecessary noise to the Vite config.

What user-facing changes did I ship

There are no user-facing changes. The removed setting was never applied because no build target exists for this library.

How I implemented it

Deleted the unused build object from the mergeConfig(baseConfig, { ... }) call in architect/cloudflare-client/vite.config.ts. The Vitest test block and the base config import were left untouched, so the only active target for this library continues to behave identically.

Description for the changelog

Removes an unused build: { minify: false } override from architect/cloudflare-client/vite.config.ts. The cloudflare-client project has never exposed a build target, so this configuration was dead code with no functional effect.

cloudflare-client dead Vite build config removal

low1 file
Removes an unused `build: { minify: false }` block from `cloudflare-client/vite.config.ts`; this library has never exposed a `build` target, so the configuration was dead.