You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
446 B
15 lines
446 B
// 请求接口地址 如果没有配置自动获取当前网址路径
|
|
const Setting = {
|
|
// 接口请求地址
|
|
// apiBaseURL: `http://v4.pc.crmeb.net/api`,
|
|
wsSocketUrl: `ws://118.190.59.181:20433/`,
|
|
apiBaseURL:'https://yaochangshop.pro.xinzhidi.cn/api',
|
|
// wsSocketUrl= `ws:${'https://yaochangshop.pro.xinzhidi.cn'}/ws`;
|
|
// mode: 'spa',
|
|
mode: 'universal',
|
|
port: '20433',
|
|
// base: '/home/'
|
|
base: ''
|
|
};
|
|
|
|
export default Setting;
|
|
|