fix(config): 收敛 Vite 配置并兼容 AI 可选参数

- 移除重复的 Vite JS 配置并阻止 TypeScript 构建重新生成
- 精确识别 temperature 与 reasoning_effort 的 400 错误并有界降级
- 补充 Docker 只读挂载 .env 的安全边界说明
This commit is contained in:
Arepeater
2026-08-08 15:22:05 +08:00
parent fec53bb46f
commit e1c6aa2a14
5 changed files with 87 additions and 88 deletions
+2 -1
View File
@@ -8,7 +8,8 @@
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true,
"composite": true
"composite": true,
"emitDeclarationOnly": true
},
"include": ["vite.config.ts"]
}