Files
helix-web-react/src/vite-env.d.ts
T

36 lines
722 B
TypeScript
Raw Normal View History

2025-12-25 16:12:01 +08:00
/// <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
/**
* Default region for new users
*/
2025-12-25 16:12:01 +08:00
readonly VITE_DEFAULT_REGION_ABBREVIATION: RegionAbbreviation
/**
* Application title, can be set to any preferred string as your wish.
*/
readonly VITE_APP_TITLE: string
2025-12-25 16:12:01 +08:00
}
interface ImportMeta {
readonly env: ImportMetaEnv
}