erp-platform/ui/src/vite-env.d.ts

15 lines
353 B
TypeScript
Raw Normal View History

2025-05-06 06:45:49 +00:00
/// <reference types="vite/client" />
2025-09-22 19:37:28 +00:00
/// <reference types="vite-plugin-pwa/client" />
2025-05-06 06:45:49 +00:00
interface ImportMetaEnv {
readonly VITE_API_URL: string
readonly VITE_CDN_URL: string
readonly VITE_REACT_APP_VERSION: string
readonly VITE_AI_URL: string
2025-10-18 20:04:24 +00:00
readonly VITE_GOOGLE_MAPS_API_KEY: string
2025-05-06 06:45:49 +00:00
}
interface ImportMeta {
readonly env: ImportMetaEnv
}