23 lines
514 B
TypeScript
23 lines
514 B
TypeScript
|
interface ImportMetaEnv {
|
||
|
// Auto generate by env-parse
|
||
|
readonly VITE_PROXY: string
|
||
|
/**
|
||
|
* VITE_FILE_URL=http://183.251.104.38:10110/file/
|
||
|
*/
|
||
|
readonly VITE_FILE_URL: string
|
||
|
readonly VITE_TEMPLATE_URL: string
|
||
|
readonly VITE_BASE: string
|
||
|
/**
|
||
|
* VITE_BASE_URL=http://192.168.0.25:8095/
|
||
|
*/
|
||
|
readonly VITE_BASE_URL: string
|
||
|
/**
|
||
|
* websocket t掉线
|
||
|
*/
|
||
|
readonly VITE_ON_LINE_WEB_SOCKET_URL: string
|
||
|
/**
|
||
|
* websocket 在线学习
|
||
|
*/
|
||
|
readonly VITE_LEARNING_WEB_SOCKET_URL: string
|
||
|
}
|