// 获取环境变量值 export function getEnv(key) { if (import.meta.env) { return import.meta.env[key] } else { return process.env[key] } }