declare interface ImportMetaEnv { readonly VITE_APP_TITLE: string readonly VITE_BASE_API: string readonly VITE_ROUTER_HISTORY: 'hash' | 'html5' readonly VITE_PUBLIC_PATH: string } interface ImportMeta { readonly env: ImportMetaEnv } declare module '*.vue' { import { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, any> export default component }