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'