iv-npm 1.7.36 → 1.7.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.7.36",
3
+ "version": "1.7.37",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -211,6 +211,9 @@ function apiConfiger(config) {
211
211
  if (config.requestBase == "FMM_URL") {
212
212
  config.baseURL = process.env.NODE_ENV == "development" ? "/fmm" : `${protocol}//fmm.${hostname[1]}.${hostname[2]}`;
213
213
  }
214
+ if (config.requestBase == "PDM_URL") {
215
+ config.baseURL = process.env.NODE_ENV == "development" ? "/pdm" : `${protocol}//pdm.${hostname[1]}.${hostname[2]}`;
216
+ }
214
217
  return config;
215
218
  }
216
219