/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string;
readonly VITE_APP_TITLE?: string;
// Add other env variables here...
}
interface ImportMeta {
readonly env: ImportMetaEnv;