From 0792a57e6f7bd57c852a1a3c99243be8dc06b398 Mon Sep 17 00:00:00 2001 From: zdl <3489966805@qq.com> Date: Sat, 11 Oct 2025 21:26:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8DJS=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/contexts/AuthContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/AuthContext.js b/src/contexts/AuthContext.js index cd817852..ebf0f7ea 100755 --- a/src/contexts/AuthContext.js +++ b/src/contexts/AuthContext.js @@ -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();