@live-change/db-admin 0.6.19 → 0.6.21
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/front/src/entry-server.js +1 -1
- package/front/src/main.js +4 -6
- package/front/vite.config.js +4 -2
- package/package.json +3 -2
package/front/src/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createSSRApp } from 'vue'
|
|
2
|
-
import {
|
|
2
|
+
import { createHead } from "@vueuse/head"
|
|
3
3
|
|
|
4
4
|
import { registerComponents } from '@live-change/vue3-components'
|
|
5
5
|
import ReactiveDaoVue from '@live-change/dao-vue3'
|
|
@@ -46,10 +46,8 @@ export function createApp(api) {
|
|
|
46
46
|
app.directive('ripple', Ripple)
|
|
47
47
|
app.directive('badge', BadgeDirective)
|
|
48
48
|
|
|
49
|
-
const
|
|
50
|
-
|
|
51
|
-
})
|
|
52
|
-
app.use(meta)
|
|
49
|
+
const head = createHead()
|
|
50
|
+
app.use(head)
|
|
53
51
|
|
|
54
|
-
return { app, router }
|
|
52
|
+
return { app, router, head }
|
|
55
53
|
}
|
package/front/vite.config.js
CHANGED
|
@@ -103,11 +103,13 @@ export default defineConfig(async ({ command, mode }) => {
|
|
|
103
103
|
'@live-change/uid',
|
|
104
104
|
'@live-change/framework',
|
|
105
105
|
'@live-change/framework/lib/utils/validators.js',
|
|
106
|
-
'debug'
|
|
106
|
+
'debug'
|
|
107
|
+
],
|
|
108
|
+
exclude: [
|
|
107
109
|
'primevue',
|
|
108
110
|
'primevue/usetoast',
|
|
109
111
|
'primevue/useconfirm',
|
|
110
|
-
'primevue/usedialog'
|
|
112
|
+
'primevue/usedialog',
|
|
111
113
|
]
|
|
112
114
|
},
|
|
113
115
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db-admin",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.21",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --initScript ./init.js --dbAccess",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"@live-change/vue3-ssr": "0.2.29",
|
|
27
27
|
"@vitejs/plugin-vue": "^4.3.4",
|
|
28
28
|
"@vueuse/core": "^10.4.1",
|
|
29
|
+
"@vueuse/head": "^2.0.0",
|
|
29
30
|
"codeceptjs-assert": "^0.0.5",
|
|
30
31
|
"compression": "^1.7.4",
|
|
31
32
|
"cross-env": "^7.0.3",
|
|
@@ -61,5 +62,5 @@
|
|
|
61
62
|
"author": "",
|
|
62
63
|
"license": "ISC",
|
|
63
64
|
"description": "",
|
|
64
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "23e76536520d553e1caaf7ec6340df736f4cc9fd"
|
|
65
66
|
}
|