@mixd-id/web-scaffold 0.1.240411085 → 0.1.240411086

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.240411085",
4
+ "version": "0.1.240411086",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -455,6 +455,10 @@ export default{
455
455
  if(this.$route.query?.search)
456
456
  this.preset.search = this.$route.query.search
457
457
  }
458
+ else{
459
+ const defaultConfig = setupConfig(typeof this.defaultConfig === 'function' ? await this.defaultConfig() : {})
460
+ Object.assign(this.cConfig, defaultConfig)
461
+ }
458
462
  }
459
463
  else{
460
464
  const defaultConfig = setupConfig(typeof this.defaultConfig === 'function' ? await this.defaultConfig() : {})