sozsoft-platform/ui/src/vite-env.d.ts
2026-08-13 00:26:36 +03:00

15 lines
409 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string
readonly VITE_CDN_URL: string
readonly VITE_AI_URL: string
readonly VITE_USE_POLLING?: string
/** Dev sunucusunda service worker'ı açar (varsayılan kapalı). */
readonly VITE_PWA_DEV?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}