You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
260 B
11 lines
260 B
/// <reference types="vite/client" />
|
|
|
|
/** 项目环境配置 */
|
|
interface EnvConfig {
|
|
/** vite 调试服务 bind host */
|
|
serverHost: string | boolean;
|
|
/** vite 调试端口 */
|
|
serverPort: number;
|
|
/** lcc api服务地址 */
|
|
lccApiTarget: string;
|
|
}
|
|
|