mirror of
https://gitee.com/gz-yami/mall4j.git
synced 2026-03-22 09:17:16 +08:00
16 lines
510 B
JavaScript
16 lines
510 B
JavaScript
/**
|
|
* 生产环境
|
|
*/
|
|
;(function () {
|
|
window.SITE_CONFIG = {}
|
|
|
|
// api接口请求地址
|
|
window.SITE_CONFIG['baseUrl'] = 'https://mall4j-admin.mall4j.com/apis'
|
|
// 静态资源文件url
|
|
window.SITE_CONFIG['resourcesUrl'] = 'https://img-test.mall4j.com/'
|
|
// cdn地址 = 域名 + 版本号
|
|
window.SITE_CONFIG['domain'] = './' // 域名
|
|
window.SITE_CONFIG['version'] = '' // 版本号(年月日时分)
|
|
window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version
|
|
})()
|