Files
WYF-koubo/src/config.ts
T
2026-06-19 18:45:55 +08:00

27 lines
709 B
TypeScript

import packageJson from "../package.json";
// 🔧 修复:导入前端版本的 util,不要导入 electron 版本
// import {TimeUtil} from "../electron/lib/util"; // ❌ 这是 Node.js 版本,会被打包到渲染进程
const BASE_URL = "";
export const AppConfig = {
name: "天英超级IP智能体",
title: "天英超级IP智能体",
slogan: "Smoke",
version: packageJson.version,
website: ``,
websiteGithub: "",
websiteGitee: "",
apiBaseUrl: `http://49.233.157.120:3002/api`,
updaterUrl: ``,
downloadUrl: ``,
feedbackUrl: ``,
statisticsUrl: ``,
guideUrl: ``,
helpUrl: ``,
serverUrl: ``,
basic: {
userEnable: false,
},
};