dev.env.js 881 Bytes
Newer Older
程智春 committed
1 2 3 4 5 6 7 8
/*
 * @Author: your name
 * @Date: 2020-10-21 09:46:59
 * @LastEditTime: 2020-10-22 14:09:41
 * @LastEditors: Please set LastEditors
 * @Description: In User Settings Edit
 * @FilePath: \mayi-mp-shop\config\dev.env.js
 */
程默 committed
9 10 11
var merge = require('webpack-merge')
var prodEnv = require('./prod.env')

程默 committed
12

程默 committed
13
module.exports = merge(prodEnv, {//zjgyl
程默 committed
14
  SHOP_MIXID:"'antgood'",
程默 committed
15
  NODE_ENV: '"development"',
程默 committed
16
  // BASE_URL:"'https://shop.mayi888.com'", 
程默 committed
17
  // BASE_URL:"'http://192.168.1.146:3005'",
程智春 committed
18
  // BASE_URL:"'http://192.168.1.127:3000'",
程默 committed
19
  BASE_URL:"'https://test-m-shop.mayi888.cn'",
程默 committed
20
  // BASE_URL:"'http://192.168.137.1:3004'",
程默 committed
21

程默 committed
22
  OLSHOP_URL:'"https://test-m-shop.mayi888.cn/innerApi/shopApiService"',
程默 committed
23 24 25
  // OLSHOP_URL:'"https://shop.mayi888.com/innerApi/shopApiService"',
  IMG_DOMAIN: '"http://test-bucket-ant.oss-cn-shanghai.aliyuncs.com"'
  // IMG_DOMAIN: '"http://cdn.mayi888.com"'
程默 committed
26
})