|
@@ -1,9 +1,9 @@
|
|
|
// 开发环境配置
|
|
|
-export const urlConfig = {
|
|
|
+const config = {
|
|
|
// 生产环境
|
|
|
produce: {
|
|
|
baseUrl: 'https://www.menduner.com',
|
|
|
- baseUrl: 'https://kkfileview.menduner.com/', // 预览路径
|
|
|
+ previewUrl: 'https://kkfileview.menduner.com/', // 预览路径
|
|
|
},
|
|
|
httpsTest: {
|
|
|
baseUrl: 'https://menduner.citupro.com:2443'
|
|
@@ -13,7 +13,9 @@ export const urlConfig = {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-export const baseUrl = urlConfig.produce.baseUrl
|
|
|
+export const envObj = config['produce']
|
|
|
+
|
|
|
+export const baseUrl = envObj.baseUrl
|
|
|
|
|
|
// 租户id
|
|
|
export const tenantId = '155'
|