Spaces:
Running
Running
| /// <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; | |
| } | |