Files
consumer-front/src/config/index.js
T

20 lines
340 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 公共配置(开发/生产环境共享)
*/
const common = {
// 应用信息
appName: '悟空智能',
appVersion: '1.0.0',
// 默认设备ID(开发调试用)
defaultDeviceId: '',
// 客服电话
servicePhone: '13264706088',
// 请求超时时间(ms
requestTimeout: 10000,
};
export default common;