27 lines
704 B
TypeScript
27 lines
704 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://127.0.0.1:3302/api`,
|
|
updaterUrl: ``,
|
|
downloadUrl: ``,
|
|
feedbackUrl: ``,
|
|
statisticsUrl: ``,
|
|
guideUrl: ``,
|
|
helpUrl: ``,
|
|
serverUrl: ``,
|
|
basic: {
|
|
userEnable: false,
|
|
},
|
|
};
|