iv-npm 1.7.88 → 1.7.90

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.88",
3
+ "version": "1.7.90",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -214,6 +214,9 @@ function apiConfiger(config) {
214
214
  if (config.requestBase == "PDM_URL") {
215
215
  config.baseURL = process.env.NODE_ENV == "development" ? "/pdm" : `${protocol}//pdm.${hostname[1]}.${hostname[2]}`;
216
216
  }
217
+ if (config.requestBase == "POS_URL") {
218
+ config.baseURL = process.env.NODE_ENV == "development" ? "/pos" : `${protocol}//pos.${hostname[1]}.${hostname[2]}`;
219
+ }
217
220
  return config;
218
221
  }
219
222