| 123456789101112131415161718 |
- // H5页面基础路径(各环境通用)
- const h5Url = '/nightFragrance/#';
- // 静态资源路径(各环境通用)
- const staticUrl = 'https://life.baoxianzhanggui.com/pro-img/nightFragrance';
- // 正式环境
- let baseUrl = 'https://test.baoxianzhanggui.com/nightFragrance';
- //let baseUrl = 'http://192.168.0.49:8087'
- // let baseUrl = 'https://8c55-171-118-90-51.ngrok-free.app'
- if (process.env.NODE_ENV == 'development') {
- // baseUrl = 'https://test.baoxianzhanggui.com/locallive-java' // 测试环境
- //baseUrl = 'http://192.168.1.190:8087' // 靳
- //baseUrl = 'http://192.168.1.222:8087' // 志珺
- }
- // 同时导出所有变量(命名导出)
- export { baseUrl, h5Url, staticUrl };
|