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