feat: 初始提交

This commit is contained in:
siujamo
2025-12-25 16:12:01 +08:00
commit faff32475f
77 changed files with 6123 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/// <reference types="vite/client" />
/// <reference types="vite-plugin-svgr/client" />
import type { CountryCode as RegionAbbreviation } from "libphonenumber-js"
interface ImportMetaEnv {
/**
* Server Base URL
*/
readonly VITE_API_BASE_URL: string
/**
* Microsoft Entra ID Client ID
*/
readonly VITE_MSAL_CLIENT_ID: string
/**
* Microsoft Entra ID Tenant ID
*/
readonly VITE_MSAL_TENANT_ID: string
readonly VITE_DEFAULT_REGION_ABBREVIATION: RegionAbbreviation
}
interface ImportMeta {
readonly env: ImportMetaEnv
}