1
2
3
4
5
6
7
8
9
10
11
12
|
| const ENV = process.env.NODE_ENV
| export default {
| DOMAIN: 'http://192.168.10.12:8091/',
| baseURL: ENV == 'development'?'http://192.168.10.12:8091/':'http://192.168.10.12:8091/',
| // baseURL: 'http://localhost:8070',
| /* Util API */
| baseURL: 'http://192.168.10.12:8091/',
| util: {
| image: '/util/image.html' // 图片上传
| }
| }
|
|