Client code reads non-public names
API_TOKEN
Vite env prefix preflight
Paste env key names and import.meta.env references. The checker reports names only: missing references, non-public client reads, public secret-like names, and mode boundary reminders.
Vite env references need prefix or exposure review before the client build.
API_TOKEN
Client code references env names without the VITE_ prefix.
Non-VITE_ env names can stay server/build-only, but browser code cannot read them through import.meta.env.
It checks static Vite env names, `VITE_` client exposure, built-in names like MODE and PROD, missing references, and public secret-like naming before a build.
It does not run Vite, read your project files, inspect deployment settings, evaluate mode loading order, or prove that a value exists in production.