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.
17 lines
499 B
17 lines
499 B
/**
|
|
* 开发环境
|
|
*/
|
|
;(function () {
|
|
window.SITE_CONFIG = {}
|
|
|
|
// api接口请求地址
|
|
window.SITE_CONFIG['baseUrl'] = 'http://192.168.0.143:8085'
|
|
|
|
// 静态资源文件url
|
|
window.SITE_CONFIG['resourcesUrl'] = 'http://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
|
|
})()
|