Ben Lin
2024-07-22 323e576c64129723df20fd18effb20d96d8d18b3
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) {