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
415 B
15 lines
415 B
3 years ago
|
/**
|
||
|
* 测试环境
|
||
|
*/
|
||
|
;(function () {
|
||
|
window.SITE_CONFIG = {};
|
||
|
|
||
|
// api接口请求地址
|
||
|
window.SITE_CONFIG['baseUrl'] = 'http://localhost:8080/sz-fast';
|
||
|
|
||
|
// cdn地址 = 域名 + 版本号
|
||
|
window.SITE_CONFIG['domain'] = './'; // 域名
|
||
|
window.SITE_CONFIG['version'] = ''; // 版本号(年月日时分)
|
||
|
window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version;
|
||
|
})();
|