mhfeizi
mhfeizi
> @mhfeizi Could you provide minimal reproduction repo, please? It would be easier to help seeing what you are trying to test. https://github.com/mhfeizi/nuxt-components-issue-158
Build and dev mode are slow and got errors in logs when importing Vuetify 3 with Vite-plugin-vuetify
Disabling `inlineSSRStyles` fixed error for me. https://v3.nuxtjs.org/api/configuration/nuxt-config#inlinessrstyles
Build and dev mode are slow and got errors in logs when importing Vuetify 3 with Vite-plugin-vuetify
> @mhfeizi could you share how have you included Vuetify 3 in your Nuxt 3 project? With plugin? But what's in nuxt.config.ts and what's in the plugin file? Because it...
Build and dev mode are slow and got errors in logs when importing Vuetify 3 with Vite-plugin-vuetify
> What do you have in assets/vuetify.settings.scss? ```scss @use 'vuetify/settings' with( /* ... */ ); ```
Build and dev mode are slow and got errors in logs when importing Vuetify 3 with Vite-plugin-vuetify
I also add `vuetify.settings.scss` in my `main.scss` and import `main.scss` in layout main.scss ```scss @use "./vuetify.settings.scss"; ```
Build and dev mode are slow and got errors in logs when importing Vuetify 3 with Vite-plugin-vuetify
Temporary solution : `server/plugins/vuetify-fix.ts` ```ts export default defineNitroPlugin((nitroApp: any) => { nitroApp.hooks.hook("render:response", (response: any) => { response.body = response.body.replaceAll("/_nuxt/\0", "/_nuxt/"); }); }); ```
It doesn't work for me with https : > Seems like i've spent too much time trying to figure out reason why it suddenly stopped working. > > Solution for...