Contents
PR Summary
What problems was I solving
The leadmagic-client Vite configuration contained dead/no-op settings: a build: { minify: false } block and an empty test.globalSetup: [] array. These added noise and could mislead maintainers into thinking the library had a Vite build step or required global setup fixtures.
What user-facing changes did I ship
None. This is an internal tooling cleanup with no runtime, consumer-facing, or test behavior change.
How I implemented it
Removed the unused build block and the empty globalSetup array from architect/leadmagic-client/vite.config.ts. The cleanup is safe because leadmagic-client has no Nx build target and is consumed directly as TypeScript source via the @architect/leadmagic-client path alias; the empty globalSetup array matches Vitest's default.
Description for the changelog
Remove dead Vite build configuration and an empty Vitest globalSetup array from leadmagic-client. No behavioral or consumer-facing impact.