Files
edr-platform/apps/edr-freight-web/portal/src/vite-env.d.ts
2026-07-02 13:27:59 +00:00

25 lines
475 B
TypeScript

/// <reference types="vite/client" />
interface Window {
__IAM_CONFIG__?: {
apiUrl: string;
postLoginPath?: string;
};
__USER_MANAGEMENT_BRANDING__?: {
organizationName: string;
appName: string;
moduleBasePath: string;
backToAppPath?: string;
backToAppLabel?: string;
};
}
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_GOOGLE_MAPS_API_KEY?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}