Files
lotteryAdmin/src/lib/lottery-api-env.ts
kang 671c737781 refactor(env, i18n, http): 更新环境配置与错误提示信息
修改 .env.example,简化 API 配置说明并明确生产环境要求。更新多语言错误提示,确保用户在未启用 API 代理时获得清晰反馈。重构 admin-http.ts,优化 API 基础 URL 的解析逻辑,提升代码可维护性。
2026-05-29 11:48:13 +08:00

5 lines
241 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/** 是否已配置可请求的 Laravel API默认有本地 origin极少用 PROXY_DISABLED 关闭)。 */
export function hasLotteryAdminApiBaseUrl(): boolean {
return process.env.NEXT_PUBLIC_LOTTERY_API_PROXY_DISABLED !== "true";
}