2026-02-24 20:44:16 +00:00
|
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
/// <reference types="vite-plugin-pwa/client" />
|
|
|
|
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
|
readonly VITE_API_URL: string
|
|
|
|
|
|
readonly VITE_CDN_URL: string
|
|
|
|
|
|
readonly VITE_REACT_APP_VERSION: string
|
|
|
|
|
|
readonly VITE_AI_URL: string
|
|
|
|
|
|
readonly VITE_GOOGLE_MAPS_API_KEY: string
|
2026-08-07 11:59:47 +00:00
|
|
|
|
readonly VITE_USE_POLLING?: string
|
|
|
|
|
|
/** Dev sunucusunda service worker'ı açar (varsayılan kapalı). */
|
|
|
|
|
|
readonly VITE_PWA_DEV?: string
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
|
|
}
|