feat: 修复JS配置错误

This commit is contained in:
zdl
2025-10-11 21:26:31 +08:00
parent 1f5c95518e
commit 0792a57e6f

View File

@@ -5,7 +5,7 @@ import { useToast } from '@chakra-ui/react';
// API基础URL配置
const isProduction = process.env.NODE_ENV === 'production';
const API_BASE_URL = isProduction ? "" : process.env.REACT_APP_API_URL || "http://49.232.185.254:5000";
const API_BASE_URL = isProduction ? "" : process.env.REACT_APP_API_URL || "http://49.232.185.254:5001";
// 创建认证上下文
const AuthContext = createContext();