dev.env.js 1.27 KB
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'",
18
  // BASE_URL:"'http://172.16.1.18:3000'",
程默 committed
19
  BASE_URL:"'https://test-m-shop.mayi888.cn'",
李嘉林 committed
20
  ADMIN_URL:"'https://test-ant.mayi888.cn'",
21
  GUIDE_URL:"'https://guide-m.mayi888.cn'",
程默 committed
22
  // BASE_URL:"'http://192.168.137.1:3004'",
程默 committed
23

程默 committed
24
  OLSHOP_URL:'"https://test-m-shop.mayi888.cn/innerApi/shopApiService"',
程默 committed
25
  // OLSHOP_URL:'"https://shop.mayi888.com/innerApi/shopApiService"',
李嘉林 committed
26 27
  IMG_DOMAIN: '"http://test-bucket-ant.oss-cn-shanghai.aliyuncs.com"',
  POSTHOG_KEY: '"phc_nTr1oY7NkSuDMZsqCskE6iUIGKgWPmFHlRAKFVuZD2B"',
李嘉林 committed
28
  POSTHOG_HOST: '"https://posthog.mayi118.com"',
李嘉林 committed
29
  AREA_JSON: '"https://mayi-newshop.oss-cn-shanghai.aliyuncs.com/static/js/app.area.json"',
李嘉林 committed
30 31
  WLY_PROD_MARKETING: '"https://uat-zanmall-m.cipmp.com"',
  MANALYTICS_HOST: '"https://analytics.mayi888.cn/ma.gif"',
李嘉林 committed
32 33
  // IMG_DOMAIN: '"http://cdn.mayi888.com"',

程默 committed
34
})