/// interface ImportMetaEnv { readonly VITE_API_BASE?: string; readonly VITE_ASTRBOT_RELEASE_BASE_URL?: string; readonly VITE_BASE_PATH?: string; readonly VITE_DEV_API_PROXY_TARGET?: string; } interface ImportMeta { readonly env: ImportMetaEnv; } declare module "*.vue" { import type { DefineComponent } from "vue"; const component: DefineComponent<{}, {}, any>; export default component; }