test.env.js 624 B

1234567891011121314
  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. SOCKET_Url: '"wss://test.baoxianzhanggui.com/web-api/"',
  13. })