vue2-client 1.8.145 → 1.8.146

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": "vue2-client",
3
- "version": "1.8.145",
3
+ "version": "1.8.146",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -447,6 +447,10 @@ export default {
447
447
  config.slotsDeclare = []
448
448
  }
449
449
 
450
+ if (config.data.images && this.configFromWeb[targetName].data.images) {
451
+ config.data.images = { ...config.data.images, ...this.configFromWeb[targetName].data.images }
452
+ delete this.configFromWeb[targetName].data.images
453
+ }
450
454
  config.data = { ...config.data, ...this.configFromWeb[targetName].data }
451
455
  }
452
456
  }