1/// <reference types="vite/client" /> 2 3interface ImportMetaEnv { 4 readonly VITE_API_URL: string 5} 6 7interface ImportMeta { 8 readonly env: ImportMetaEnv 9}