hxf/frontend/env.d.ts

14 lines
350 B
TypeScript
Raw Normal View History

2025-12-04 14:48:38 +08:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string
readonly VITE_APP_TITLE: string
readonly VITE_APP_VERSION: string
readonly VITE_ENABLE_MOCK: string
readonly VITE_UPLOAD_MAX_SIZE: string
readonly VITE_SUPPORTED_FILE_TYPES: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}