123456789101112131415161718192021222324 |
- const env = 'production' // 开发环境deveploment 生产环境production
- /**
- * items : 商品信息相关业务
- */
- const api = {
- // 开发环境
- dev: {
- items: 'http://items.aiyangniu.net',
- cow: 'http://cow.aiyangniu.net',
- user: 'http://account2.aiyangniu.net'
- },
- // 生产环境
- pro: {
- items: 'http://items.aiyangniu.cn',
- cow: 'http://cow.aiyangniu.net',
- user: 'http://account.aiyangniu.net'
- }
- }
- module.exports = {
- api: env === 'deveploment' ? api.dev : api.pro,
- env,
- }
|