Files
Migu2.0/frontends/apps/simple-platform-vue/src/utils/vrender.ts
T
黄兆尉andCursor 3686abdc78 将调度内核标识从 SimpleLite 全面重命名为 Simple3。
配置段/环境变量、Launcher、健康检查 API、OpenAPI 与前后端文案同步;兼容探测旧 SimpleLite 进程名。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-26 17:46:52 +08:00

12 lines
468 B
TypeScript

/**
* webVRender (Simple3 3D 视口, 默认 :8223) 的 host 解析。
*
* 优先级:显式 VITE_VRENDER_HOST > 当前页面 hostname:8223。
* 不能写死 localhost —— 从远程浏览器访问平台时 iframe 会去连访问者本机而非服务器。
*/
export function defaultVrHost(): string {
const env = import.meta.env.VITE_VRENDER_HOST as string | undefined
if (env && env.trim()) return env.trim()
return `${window.location.hostname}:8223`
}