/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL?: string
readonly VITE_APP_TITLE?: string
// Если используете другие переменные с префиксом VITE_, добавьте их сюда
}
interface ImportMeta {
readonly env: ImportMetaEnv
}