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.
14 lines
428 B
14 lines
428 B
/** |
|
* 生产环境 |
|
*/ |
|
;(function () { |
|
window.SITE_CONFIG = {}; |
|
|
|
// api接口请求地址 |
|
window.SITE_CONFIG['baseUrl'] = 'https://ditanxiong.gomyorder.cn/sqx_fast'; |
|
|
|
// cdn地址 = 域名 + 版本号 |
|
window.SITE_CONFIG['domain'] = './'; // 域名 |
|
window.SITE_CONFIG['version'] = ''; // 版本号(年月日时分) |
|
window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version; |
|
})();
|
|
|