feat: 将当前环境从测试环境切换为生产环境

This commit is contained in:
Roe-xin
2025-12-31 19:10:00 +08:00
parent 60d8eaf0eb
commit 9fc3c9f056

View File

@ -8,7 +8,7 @@ import * as vscode from "vscode";
type Environment = "dev" | "test" | "prod"; type Environment = "dev" | "test" | "prod";
/** 当前环境 - 修改这里切换环境 */ /** 当前环境 - 修改这里切换环境 */
const CURRENT_ENV: Environment = "test"; const CURRENT_ENV: Environment = "prod";
/** 配置项接口 */ /** 配置项接口 */
export interface IccoderConfig { export interface IccoderConfig {