feat(freight:backoffice): added basic frontend integration with auth(login) page

This commit is contained in:
Michael Abebe
2026-05-22 17:15:46 +03:00
parent f9a9d9923c
commit 2c9ca6f16b
30 changed files with 515 additions and 3301 deletions

View File

@@ -1 +1,24 @@
/// <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_BASE_API_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}