Files
Arkie-Library-Frontend/src/vite-env.d.ts
thomas 769087ba4a
All checks were successful
Deploy to Frontend Servers / deploy (push) Successful in 53s
Route same-origin API via /apnew/api to bypass ALB /api* rule.
ALB sends /api/* to an unreachable backend target group (502 on apex).
Use VITE_API_PREFIX=/apnew with nginx proxy to backend-1 until the listener rule is removed.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-23 17:56:38 +08:00

15 lines
445 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_API_PREFIX?: string;
readonly VITE_WALLETCONNECT_PROJECT_ID: string;
readonly VITE_ADMIN_UI_PREFIX?: string;
/** When `"true"`, bundle admin UI only (no public pages); use with `VITE_ADMIN_UI_PREFIX` or default secret prefix. */
readonly VITE_ADMIN_ONLY?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}