vuetify-nuxt-module 0.15.1 → 0.15.2
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.mts +2 -0
- package/dist/module.d.ts +2 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -1
- package/package.json +2 -2
package/dist/module.d.mts
CHANGED
|
@@ -241,6 +241,8 @@ interface MOptions {
|
|
|
241
241
|
*
|
|
242
242
|
* @see https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin
|
|
243
243
|
* @see https://github.com/userquin/vuetify-nuxt-module/issues/78 and https://github.com/userquin/vuetify-nuxt-module/issues/74
|
|
244
|
+
*
|
|
245
|
+
* @default true
|
|
244
246
|
*/
|
|
245
247
|
styles?: true | 'none' | 'sass' | {
|
|
246
248
|
configFile: string;
|
package/dist/module.d.ts
CHANGED
|
@@ -241,6 +241,8 @@ interface MOptions {
|
|
|
241
241
|
*
|
|
242
242
|
* @see https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin
|
|
243
243
|
* @see https://github.com/userquin/vuetify-nuxt-module/issues/78 and https://github.com/userquin/vuetify-nuxt-module/issues/74
|
|
244
|
+
*
|
|
245
|
+
* @default true
|
|
244
246
|
*/
|
|
245
247
|
styles?: true | 'none' | 'sass' | {
|
|
246
248
|
configFile: string;
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { pathToFileURL } from 'node:url';
|
|
|
14
14
|
import { parseQuery, parseURL } from 'ufo';
|
|
15
15
|
import destr from 'destr';
|
|
16
16
|
|
|
17
|
-
const version = "0.15.
|
|
17
|
+
const version = "0.15.2";
|
|
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)}`;
|
|
@@ -1377,6 +1377,7 @@ const module = defineNuxtModule({
|
|
|
1377
1377
|
},
|
|
1378
1378
|
moduleOptions: {
|
|
1379
1379
|
importComposables: true,
|
|
1380
|
+
includeTransformAssetsUrls: true,
|
|
1380
1381
|
styles: true
|
|
1381
1382
|
}
|
|
1382
1383
|
}),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify-nuxt-module",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.15.
|
|
4
|
+
"version": "0.15.2",
|
|
5
5
|
"packageManager": "pnpm@9.5.0",
|
|
6
6
|
"description": "Zero-Config Nuxt Module for Vuetify",
|
|
7
7
|
"author": "userquin <userquin@gmail.com>",
|
|
@@ -142,4 +142,4 @@
|
|
|
142
142
|
"installDependencies": false,
|
|
143
143
|
"startCommand": "node .stackblitz.js && pnpm install && nr prepack && nr dev:prepare && nr dev"
|
|
144
144
|
}
|
|
145
|
-
}
|
|
145
|
+
}
|