From 60d8eaf0eb8b40d99408fc5164aa196c26c30d27 Mon Sep 17 00:00:00 2001 From: Roe-xin Date: Wed, 31 Dec 2025 19:08:37 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=BD=93=E5=89=8D?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E4=B8=BA=E6=B5=8B=E8=AF=95=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E5=B9=B6=E8=B0=83=E6=95=B4=E5=90=8E=E7=AB=AF=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E6=B3=A8=E9=87=8A=E6=A0=BC=E5=BC=8F?= 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 442ebc3..6299547 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 { @@ -36,7 +36,7 @@ const ENV_CONFIG: Record = { }, /** 生产环境 */ prod: { - backendUrl: "https://api.iccoder.com", // TODO: 替换为实际生产地址 + backendUrl: "https://api.iccoder.com", // TODO: 替换为实际生产地址 timeout: 60000, userId: "default-user", },