mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 09:20:15 +01:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_SERVER_URL_DEV: string;
|
||
|
|
readonly VITE_SERVER_URL_PROD: string;
|
||
|
|
readonly VITE_SHOW_GOOGLE_LOGIN_OPTION: string;
|
||
|
|
readonly VITE_CLIENT_URL_DEV: string;
|
||
|
|
readonly VITE_CLIENT_URL_PROD: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv;
|
||
|
|
}
|