Raod 4 年 前
コミット
6a96f0460e
2 ファイル変更2 行追加2 行削除
  1. 1 1
      report-ui/config/prod.env.js
  2. 1 1
      report-ui/config/test.env.js

+ 1 - 1
report-ui/config/prod.env.js

@@ -1,5 +1,5 @@
 'use strict'
 module.exports = {
   NODE_ENV: '"production"',
-  BASE_API: '"https://log.haitongauto.com"'
+  BASE_API: '"http://127.0.0.1:9095"'
 }

+ 1 - 1
report-ui/config/test.env.js

@@ -4,5 +4,5 @@ const prodEnv = require('./prod.env')
 
 module.exports = merge(prodEnv, {
   NODE_ENV: '"testing"',
-  BASE_API: '"http://haitongnla.test.anji-plus.com"'
+  BASE_API: '"http://127.0.0.1:9095"'
 })