vuetifyjs / nuxt-module

Zero-config Nuxt Module for Vuetify
https://nuxt.vuetifyjs.com/
MIT License
219 stars 22 forks source link

Bump Vuetify to v3.6.14 #250

Closed shawn-mty closed 2 months ago

shawn-mty commented 2 months ago

There is a RuntimeModuleHooks warning whenever you do a build in vuetify-nuxt-module. This is due to Vuetify having a slightly old version with an old version of sass.

Here is what it looks like: image

This is fixed in Vuetify v3.6.14

Shall I jump on this?

Thanks

userquin commented 2 months ago

The warning can be ignored, using old nuxt build module, it generates the old interface, I will try to update it: the warning not related to vuetify, it is a nuxt warning.

About vuetify version. You can add it to your dependencies, I only release a new version when there is a new vuetify minor (next will be for vuetify 3.7).

shawn-mty commented 2 months ago

Ah okay I see, thanks for the explanation, I get it!

Also I noticed that there is an incompatibility with sass that was fixed in v3.6.14 which is actually an error.

But yeah, can wait.

Thanks for maintaining this lib 🙇

userquin commented 2 months ago

Maybe you can try with vite 5.4.0 and new sass options: install vite 5.4.0 as dev dependency and add this inside vite option in nuxt config file: https://github.com/vuetifyjs/vuetify/pull/20260/files#diff-be942263511e50feadc9ad6b917071e137c2cdb7d981c683f3b1bf5cd6501388R55

shawn-mty commented 2 months ago

Maybe you can try with vite 5.4.0 and new sass options: install vite 5.4.0 as dev dependency and add this inside vite option in nuxt config file: https://github.com/vuetifyjs/vuetify/pull/20260/files#diff-be942263511e50feadc9ad6b917071e137c2cdb7d981c683f3b1bf5cd6501388R55

Thank you sir!

I'll try it out