chore: 统一开发服务器端口为 13098

- 更新 .env.example、env.ts、vite.config.ts 默认端口
- 同步更新 sidecar.rs Rust 端口常量
- 更新 README、AGENTS.md 等文档中的端口引用
This commit is contained in:
2026-01-27 11:10:21 +08:00
parent d22a0f8d69
commit f2db4bff9d
7 changed files with 24 additions and 23 deletions

View File

@@ -13,7 +13,7 @@ import { z } from 'zod'
const DEFAULT_TOKEN_USAGE_URL = 'http://10.0.1.1:8318/api/usage/model'
/** 服务器端口默认值 */
const DEFAULT_SERVER_PORT = '3000'
const DEFAULT_SERVER_PORT = '13098'
/**
* 判断当前是否为打包后的可执行文件运行环境
@@ -134,7 +134,7 @@ export const env = createEnv({
.int()
.min(1)
.max(65535)
.default(3000),
.default(13098),
},
clientPrefix: 'VITE_',
client: {