From 226bb4609434a4d5631be8aa9fccc2f32f06fc5a Mon Sep 17 00:00:00 2001 From: Roe-xin Date: Mon, 5 Jan 2026 19:31:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=8D=A2=E5=88=B0=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E4=B8=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/settings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/settings.ts b/src/config/settings.ts index 769cece..cbd5fa4 100644 --- a/src/config/settings.ts +++ b/src/config/settings.ts @@ -8,7 +8,7 @@ import * as vscode from "vscode"; type Environment = "dev" | "test" | "prod"; /** 当前环境 - 修改这里切换环境 */ -const CURRENT_ENV: Environment = "dev"; +const CURRENT_ENV: Environment = "test"; /** 配置项接口 */ export interface IccoderConfig { @@ -25,7 +25,7 @@ const ENV_CONFIG: Record = { /** 本地开发环境 */ dev: { backendUrl: "http://localhost:2233", - timeout: 300000, // 5分钟,与子智能体超时一致 + timeout: 300000, // 5分钟,与子智能体超时一致 userId: "default-user", }, /** 测试服务器环境 */