vuetify-nuxt-module 0.12.0 → 0.13.0
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/dist/module.json +2 -2
- package/dist/module.mjs +3 -3
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { parseQuery, parseURL } from 'ufo';
|
|
|
14
14
|
import destr from 'destr';
|
|
15
15
|
import { transformAssetUrls } from 'vite-plugin-vuetify';
|
|
16
16
|
|
|
17
|
-
const version = "0.
|
|
17
|
+
const version = "0.13.0";
|
|
18
18
|
|
|
19
19
|
const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
|
|
20
20
|
const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
|
|
@@ -1212,7 +1212,7 @@ export default defineNuxtPlugin({
|
|
|
1212
1212
|
nuxtApp.vueApp.use(vuetify)
|
|
1213
1213
|
nuxtApp.provide('vuetify', vuetify)
|
|
1214
1214
|
await nuxtApp.hooks.callHook('vuetify:ready', vuetify)
|
|
1215
|
-
if (
|
|
1215
|
+
if (import.meta.client)
|
|
1216
1216
|
isDev && console.log('Vuetify 3 initialized', vuetify)
|
|
1217
1217
|
},
|
|
1218
1218
|
})
|
|
@@ -1311,7 +1311,7 @@ const module = defineNuxtModule({
|
|
|
1311
1311
|
name: "vuetify-nuxt-module",
|
|
1312
1312
|
configKey: "vuetify",
|
|
1313
1313
|
compatibility: {
|
|
1314
|
-
nuxt: "^3.
|
|
1314
|
+
nuxt: "^3.9.0",
|
|
1315
1315
|
bridge: false
|
|
1316
1316
|
},
|
|
1317
1317
|
version
|