ui creation

This commit is contained in:
Первов Артем
2026-06-17 09:46:52 +03:00
commit 2c4aef1185
41 changed files with 6251 additions and 0 deletions

13
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_CLOUD_API_URL?: string;
readonly VITE_TOIR_LIGHT_ORIGIN?: string;
readonly VITE_KEYCLOAK_URL?: string;
readonly VITE_KEYCLOAK_REALM?: string;
readonly VITE_KEYCLOAK_CLIENT_ID?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}