test.env.js 804 B

12345678910111213141516
  1. 'use strict'
  2. const merge = require('webpack-merge')
  3. const prodEnv = require('./prod.env')
  4. module.exports = merge(prodEnv, {
  5. NODE_ENV: '"testing"',
  6. ENV_CONFIG: '"test"',
  7. // BASE_URL: '"http://proxy.517game.site:6100"',//测试服务器
  8. BASE_URL: '"https://test.baoxianzhanggui.com/web-api"',//测试服务器
  9. // BASE_URL: '"https://pre.baoxianzhanggui.com/test/"',
  10. APP_BASE_URL: '"https://test.baoxianzhanggui.com/web-api"', // app打包上传地址
  11. CONSOLE_BASE_URL: '"https://test.baoxianzhanggui.com/console-api"', //控制台测试服务器
  12. CONSOLE_KHGX_URL: '"https://test.baoxianzhanggui.com/khgx/login"', //跳转客户服务平台地址
  13. CONSOLE_ZGD_URL: '"https://test.baoxianzhanggui.com"', //核心平台地址
  14. SOCKET_Url: '"wss://test.baoxianzhanggui.com/web-api/"',
  15. })