From 7bcfc0507043dc878c801a259aa7d058f4982551 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期四, 09 一月 2025 00:42:21 +0800 Subject: [PATCH] 工单管理优化 --- internal/vite-config/src/utils/env.ts | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/internal/vite-config/src/utils/env.ts b/internal/vite-config/src/utils/env.ts index 648d873..c84ea94 100644 --- a/internal/vite-config/src/utils/env.ts +++ b/internal/vite-config/src/utils/env.ts @@ -22,7 +22,12 @@ * @param match prefix * @param confFiles ext */ -export async function getEnvConfig(match = 'VITE_GLOB_', confFiles = getConfFiles()) { +export async function getEnvConfig( + match = 'VITE_GLOB_', + confFiles = getConfFiles(), +): Promise<{ + [key: string]: string; +}> { let envConfig = {}; for (const confFile of confFiles) { -- Gitblit v1.9.3