'use strict' const merge = require('webpack-merge') const devEnv = require('./dev.env') module.exports = merge(devEnv, { NODE_ENV: '"testing"', BASE_URL: { // 前端地址 web: '"https://trade-test.usoftchina.com:5443"', // 后端接口网关 api: '"https://saas-api-test.usoftchina.com:5443"', // 账户中心接口 sso: '"https://test-sso.uuzcc.cn"' } })