Files
siujamo 0da17ab0d7 feat: add dayjs, axios, and environment variable configuration
- Add dayjs with duration plugin pre-configured
- Add axios instance with auth token injection and 401 redirect
- Add VITE_API_BASE_URL, VITE_APP_TITLE, and VITE_ENABLE_MOCK env declarations
- Add .env.example with documented variables
2026-06-18 16:45:30 +08:00

13 lines
173 B
TypeScript

/// <reference types="vite/client" />
import "vue-router"
declare module "vue-router" {
interface RouteMeta {
requiresAuth?: boolean
guestOnly?: boolean
}
}