diff --git a/.env.development.example b/.env.development.example index c89d65a..13bc5f8 100644 --- a/.env.development.example +++ b/.env.development.example @@ -1,4 +1,4 @@ -NODE_ENV = 'development' +NODE_ENV = 'production' # Base API -VITE_APP_BASE_URL='' \ No newline at end of file +VITE_APP_BASE_URL='https://ceshi-engineering.lihaink.cn' \ No newline at end of file diff --git a/src/config/index.ts b/src/config/index.ts index 8385963..4bd9168 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -2,7 +2,7 @@ const config = { terminal: 1, //终端 title: '后台管理系统', //网站默认标题 version: '1.6.0', //版本号 - baseUrl: `${import.meta.env.VITE_APP_BASE_URL || ''}/`, //请求接口域名 + baseUrl: `${import.meta.env.VITE_APP_BASE_URL || 'https://ceshi-engineering.lihaink.cn'}/`, //请求接口域名 urlPrefix: 'adminapi', //请求默认前缀 timeout: 10 * 1000 //请求超时时长 } diff --git a/src/layout/default/components/header/index.vue b/src/layout/default/components/header/index.vue index 3f6d839..e6c1f10 100644 --- a/src/layout/default/components/header/index.vue +++ b/src/layout/default/components/header/index.vue @@ -1,7 +1,9 @@