| 1234567891011121314151617181920 |
- /// <reference types="vite/client" />
- import 'vue-router'
- declare module 'vue-router' {
- interface RouteMeta {
- titleKey?: string
- title?: string
- requiresAuth?: boolean
- }
- }
- interface ImportMetaEnv {
- readonly VITE_API_HOST85: string
- readonly VITE_API_HOST82: string
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
|