From 77adc8df1b257f51b00fee4982372df120683354 Mon Sep 17 00:00:00 2001 From: daihh Date: Wed, 8 Jun 2022 10:36:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=A4=9A=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 ++ .env.preview | 2 ++ .env.production | 2 ++ .env.testing | 2 ++ 4 files changed, 8 insertions(+) diff --git a/.env.development b/.env.development index 89df411e..594d13d4 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,7 @@ # 开发环境配置 ENV = 'development' +NODE_ENV: "development" +BASE_URL: "/pc/" # 管理系统/开发环境 VUE_APP_BASE_API = '/systemapi' diff --git a/.env.preview b/.env.preview index cf7e1a99..fa5ee33d 100644 --- a/.env.preview +++ b/.env.preview @@ -1,5 +1,7 @@ # 生产环境配置 ENV = 'preview' +NODE_ENV: "preview" +BASE_URL: "/pc/" # 管理系统/生产环境 VUE_APP_BASE_API = '/systemapi-release' diff --git a/.env.production b/.env.production index e55f5aa8..54c78c7c 100644 --- a/.env.production +++ b/.env.production @@ -1,5 +1,7 @@ # 生产环境配置 ENV = 'production' +NODE_ENV: "production" +BASE_URL: "/pc/" # 管理系统/生产环境 VUE_APP_BASE_API = '/systemapi' diff --git a/.env.testing b/.env.testing index 41401462..51ed19e9 100644 --- a/.env.testing +++ b/.env.testing @@ -1,5 +1,7 @@ # 生产环境配置 ENV = 'testing' +NODE_ENV: "testing" +BASE_URL: "/pc/" # 管理系统/生产环境 VUE_APP_BASE_API = '/systemapi'