recycapp/common/config/config.js
2025-10-29 15:50:14 +08:00

26 lines
1.4 KiB
JavaScript
Raw 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.

/**
* WanlShop 多用户电商系统核心配置项
* @author 深圳前海万联科技有限公司 <wanlshop@i36k.com>
* < 本程序非FastAdmin购买授权未经版权所有权人书面许可不能自行用于商业用途>
*
* @config socketUrl 即时通讯服务器地址微信必须使用wss:// 如wss://chat.example.com
* @config cdnUrl OSS服务地址 如https://oss.example.com 或 https://www.example.com
* @config appUrl API服务器地址 如https://api.example.com 或 https://www.example.com/api
* @config amapKey 高德网页Key
* @config debug 全局调试
*
* @ 相关文档 https://doc.fastadmin.net/wanlshop/265.html
*/
export default {
// socketurl: 'wss://stationery.njrenzhou.cn', //如果是ws:// 地址为ws://你服务器IP:7272 如 ws://123.4.56.78:7272使用wss 后面不需要添加 :7272 端口
socketurl: 'wss://chat.mxyoupin.com', //如果是ws:// 地址为ws://你服务器IP:7272 如 ws://123.4.56.78:7272使用wss 后面不需要添加 :7272 端口
// cdnurl: 'https://app.mxyoupin.com',
cdnurl: 'https://mxyoupin.oss-cn-shanghai.aliyuncs.com',
appurl: 'https://app.mxyoupin.com/api', //如二级域名https://api.example.com 或不使用二级域名 https://www.example.com/api
// appurl:"https://stationery.njrenzhou.cn/api",
amapkey: '',
appid: '', // 公众号appid
versionName: '1.1.11',
versionCode: '1111',
debug: false
}