🐞 fix(env): fix env type

This commit is contained in:
BlushGo
2025-03-19 22:58:44 +08:00
parent f68ec16563
commit 6d0aa46f20
2 changed files with 5 additions and 5 deletions

4
types/config.d.ts vendored
View File

@@ -71,7 +71,7 @@ export interface GlobEnvConfig {
// 文件前缀地址
VITE_GLOB_FILE_URL?: string;
// 开启 mock
VITE_USE_MOCK: boolean;
VITE_USE_MOCK: string;
// 是否开启控制台打印 mock 请求信息
VITE_LOGGER_MOCK: boolean;
VITE_LOGGER_MOCK: string;
}