echoes/frontend/app/env.d.ts

21 lines
490 B
TypeScript
Raw Normal View History

// File path: app/end.d.ts
/**
*
*/
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SERVER_API: string; // 用于访问API的基础URL
2024-11-27 19:52:49 +08:00
readonly VITE_ADDRESS: string; // 前端地址
readonly VITE_PORT: number; // 前端系统端口
VITE_USERNAME: string; // 前端账号名称
VITE_PASSWORD: string; // 前端账号密码
VITE_INIT_STATUS: boolean; // 系统是否进行安装
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}