vuetify-nuxt-module 0.5.11 → 0.5.12

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.d.ts CHANGED
@@ -202,7 +202,7 @@ interface MOptions {
202
202
  /**
203
203
  * Add Vuetify Vite Plugin `transformAssetsUrls`?
204
204
  *
205
- * @default false
205
+ * @default true
206
206
  */
207
207
  includeTransformAssetsUrls?: boolean;
208
208
  /**
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.5.11"
7
+ "version": "0.5.12"
8
8
  }
package/dist/module.mjs CHANGED
@@ -12,7 +12,7 @@ import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify';
12
12
  import { isAbsolute, join, relative } from 'pathe';
13
13
  import { normalizePath as normalizePath$1 } from 'vite';
14
14
 
15
- const version = "0.5.11";
15
+ const version = "0.5.12";
16
16
 
17
17
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
18
18
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
@@ -1121,7 +1121,7 @@ function configureNuxt(configKey, nuxt, ctx) {
1121
1121
  importComposables,
1122
1122
  prefixComposables,
1123
1123
  styles,
1124
- includeTransformAssetsUrls = false
1124
+ includeTransformAssetsUrls = true
1125
1125
  } = ctx.moduleOptions;
1126
1126
  const runtimeDir = ctx.resolver.resolve("./runtime");
1127
1127
  nuxt.options.build.transpile.push(configKey);
@@ -1138,8 +1138,6 @@ function configureNuxt(configKey, nuxt, ctx) {
1138
1138
  (_c = nuxt.options.vite.vue).template ?? (_c.template = {});
1139
1139
  if (typeof nuxt.options.vite.vue.template.transformAssetUrls === "undefined")
1140
1140
  nuxt.options.vite.vue.template.transformAssetUrls = transformAssetUrls;
1141
- else
1142
- ctx.logger.warn("[vuetify-nuxt-module] `includeTransformAssetsUrls` is enabled but `vite.vue.template.transformAssetUrls` is already configured, ignored!");
1143
1141
  }
1144
1142
  extendWebpackConfig(() => {
1145
1143
  throw new Error("Webpack is not supported: vuetify-nuxt-module module can only be used with Vite!");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.5.11",
4
+ "version": "0.5.12",
5
5
  "packageManager": "pnpm@8.7.6",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify",
7
7
  "author": "userquin <userquin@gmail.com>",
@@ -69,7 +69,7 @@
69
69
  "perfect-debounce": "^1.0.0",
70
70
  "unconfig": "^0.3.9",
71
71
  "vite-plugin-vuetify": "^1.0.2",
72
- "vuetify": "^3.3.9"
72
+ "vuetify": "^3.3.17"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@antfu/eslint-config": "^0.41.0",
@@ -128,4 +128,4 @@
128
128
  "installDependencies": false,
129
129
  "startCommand": "node .stackblitz.js && pnpm install && pnpm run dev"
130
130
  }
131
- }
131
+ }