/// interface ImportMetaEnv { readonly VITE_API_BASE_URL?: string; readonly VITE_STATIC_BASE_URL?: string; /** H5 开发:为 "1" 时请求走当前页同源 + Vite 代理,VITE_API_BASE_URL 可为空 */ readonly VITE_API_RELATIVE?: string; } interface ImportMeta { readonly env: ImportMetaEnv; } declare module '*.vue' { import { DefineComponent } from 'vue' // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types const component: DefineComponent<{}, {}, any> export default component }