vite-env.d.ts 343 B

1234567891011121314151617181920
  1. /// <reference types="vite/client" />
  2. import 'vue-router'
  3. declare module 'vue-router' {
  4. interface RouteMeta {
  5. titleKey?: string
  6. title?: string
  7. requiresAuth?: boolean
  8. }
  9. }
  10. interface ImportMetaEnv {
  11. readonly VITE_API_HOST85: string
  12. readonly VITE_API_HOST82: string
  13. }
  14. interface ImportMeta {
  15. readonly env: ImportMetaEnv
  16. }