重构:移动源码到 src/ 目录,支持 CLI 构建

This commit is contained in:
kk
2026-06-26 17:55:48 +08:00
parent a85117cca7
commit 437764c9d2
348 changed files with 8914 additions and 40210 deletions
+19
View File
@@ -0,0 +1,19 @@
/**
* 公共配置(开发/生产环境共享)
*/
const common = {
// 应用信息
appName: '悟空智能',
appVersion: '1.0.0',
// 默认设备ID(开发调试用)
defaultDeviceId: '',
// 客服电话
servicePhone: '13264706088',
// 请求超时时间(ms
requestTimeout: 10000,
};
export default common;