Spaces:
Running
Running
File size: 415 Bytes
2eb87e3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /// <reference types="vite/client" />
interface ImportMetaEnv {
/** API origin, no trailing slash. Empty/unset = same-origin `/api`. */
readonly VITE_API_BASE_URL?: string;
/** Local Vite development proxy target. */
readonly VITE_API_PROXY?: string;
/** Source repository linked from the interface. */
readonly VITE_GITHUB_REPO_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
|