2026-05-16 00:18:22 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
readonly VITE_API_URL: string;
|
2026-05-23 17:56:38 +08:00
|
|
|
readonly VITE_API_PREFIX?: string;
|
2026-05-16 00:18:22 +08:00
|
|
|
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;
|
|
|
|
|
}
|