From 6a96f0460e6abdd7be70e6e5627e0851dc869aea Mon Sep 17 00:00:00 2001 From: Raod <1130305001@qq.com> Date: Mon, 28 Jun 2021 09:10:54 +0800 Subject: [PATCH] env --- report-ui/config/prod.env.js | 2 +- report-ui/config/test.env.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/report-ui/config/prod.env.js b/report-ui/config/prod.env.js index 40dc4ad3..54398642 100644 --- a/report-ui/config/prod.env.js +++ b/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"' } diff --git a/report-ui/config/test.env.js b/report-ui/config/test.env.js index b7cf0c6b..05c15ecc 100644 --- a/report-ui/config/test.env.js +++ b/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"' })