vuetify-nuxt-module 1.0.0-beta.5 → 1.0.0-beta.6

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 CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "1.0.0-beta.5",
7
+ "version": "1.0.0-beta.6",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -16,7 +16,7 @@ import { debounce } from 'perfect-debounce';
16
16
  import process from 'node:process';
17
17
  import { createConfigLoader } from 'unconfig';
18
18
 
19
- const version = "1.0.0-beta.5";
19
+ const version = "1.0.0-beta.6";
20
20
 
21
21
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
22
22
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `\0${VIRTUAL_VUETIFY_CONFIGURATION}`;
@@ -224,7 +224,11 @@ async function configureNuxt(configKey, nuxt, ctx) {
224
224
  const configFile = resolveVuetifyConfigFile(styles.configFile, nuxt);
225
225
  ctx.stylesConfigFile = await resolvePath(configFile);
226
226
  const a = addTemplate({
227
- filename: "vuetify.settings.scss",
227
+ // Write to disk: without `write` Nuxt serves the template from its
228
+ // virtual FS, which 404s on Windows/SSR when the browser requests the
229
+ // real file (#363). Nest under `vuetify/` to match unplugin-styles.
230
+ write: true,
231
+ filename: "vuetify/vuetify.settings.scss",
228
232
  getContents: async () => getTemplate("vuetify/styles", ctx.stylesConfigFile)
229
233
  });
230
234
  nuxt.options.css.push(a.dst);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "1.0.0-beta.5",
4
+ "version": "1.0.0-beta.6",
5
5
  "description": "Zero-Config Nuxt Module for Vuetify",
6
6
  "author": "userquin <userquin@gmail.com>",
7
7
  "license": "MIT",
@@ -52,7 +52,7 @@
52
52
  ],
53
53
  "dependencies": {
54
54
  "@nuxt/kit": "^4.3.1",
55
- "@vuetify/unplugin-styles": "^1.0.0-beta.10",
55
+ "@vuetify/unplugin-styles": "^1.0.0-beta.11",
56
56
  "defu": "^6.1.4",
57
57
  "destr": "^2.0.5",
58
58
  "local-pkg": "^1.1.2",