mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-07 17:32:25 +08:00
21 lines
554 B
JavaScript
21 lines
554 B
JavaScript
// 全局配置文件
|
|
// let baseUrl = 'http://219.138.32.164:8089';
|
|
// let baseUrl = 'http://localhost:3000/api';
|
|
// let staticUrl = 'http://localhost:3000';
|
|
let baseUrl = 'https://www.wujiaguotou.com/api';
|
|
let staticUrl = 'https://www.wujiaguotou.com';
|
|
// 版本号 用于更新
|
|
let version = 1;
|
|
// vuex_version版本号 用于显示
|
|
let vuex_version = '1.0.' + version;
|
|
// 是否需要热更新(后台自动更新)
|
|
let flag_hot = false;
|
|
|
|
export default {
|
|
baseUrl: baseUrl,
|
|
staticUrl:staticUrl,
|
|
version: version,
|
|
vuex_version: vuex_version,
|
|
}
|
|
|