From 3174d0034e701ee00a5358184d5c122d4604e5b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=9C=E8=B4=A4=E9=87=91?= <1960116313@qq.com> Date: Wed, 27 Apr 2022 15:06:21 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=94=B9env.js=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/env.js b/src/config/env.js index d1f50ce..0210521 100644 --- a/src/config/env.js +++ b/src/config/env.js @@ -11,7 +11,7 @@ if (env.NODE_ENV === 'development') { apis = "api/"; } else if (env.NODE_ENV === 'production') { baseUrl = 'http://223.99.228.240:18081'; //生产环境地址 - api = ""; + apis = ""; } else if (env.NODE_ENV === 'test') { baseUrl = ``; //测试环境地址 }