vue2-client 1.7.13 → 1.7.14

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/CHANGELOG.md CHANGED
@@ -1,7 +1,10 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.7.2 - 1.7.13 -2023-08-23 @江超**
4
+ **1.7.14 -2023-10-10 @江超**
5
+ - webConfig在开发环境下不存储到indexedDB中
6
+
7
+ **1.7.2 - 1.7.13 -2023-10-09 @江超**
5
8
  - 完成前端整体配置接入配置中心
6
9
  - 完成组件规范化
7
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
@@ -108,7 +108,7 @@ export const indexedDB = {
108
108
  if (processFun) {
109
109
  res = processFun(res)
110
110
  }
111
- if (process.env.NODE_ENV === 'production') {
111
+ if (process.env.NODE_ENV === 'production' || key !== 'webConfig') {
112
112
  self.add(key, res)
113
113
  }
114
114
  callback(res)