Files
My-KOPKB/fe/env.d.ts
T
ISMAIL MASSERAN 94ecbe5887 first init
2026-06-08 11:37:14 +08:00

16 lines
367 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL?: string
readonly VITE_APP_NAME?: string
readonly VITE_APP_VERSION?: string
readonly VITE_APP_URL?: string
readonly VITE_APP_PORT?: string
readonly VITE_APP_ENV?: string
readonly VITE_APP_DEBUG?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}