vuetify-nuxt-module icon indicating copy to clipboard operation
vuetify-nuxt-module copied to clipboard

Zero-config Nuxt Module for Vuetify

Results 60 vuetify-nuxt-module issues
Sort by recently updated
recently updated
newest added

I'm having trouble with a pnpm workspace where both have vuetify and have slightly different dependencies, the `vuetifyBase` does not match so the `vuetifyStylesPlugin` does not work correctly. https://github.com/vuetifyjs/nuxt-module/blob/ca42a7afdf241e7ff897ad147bbe58741c2f2c66/src/vite/vuetify-styles-plugin.ts#L17 `isSubdir(vuetifyBase,...

Currently, the Vuetify module for Nuxt offers partial support for *Vuetify Blueprints*, but with several limitations, as stated in the documentation. Specifically, the following options are not supported or require...

**How to reproduce:** Add to nuxt.config.ts: `app: { pageTransition: { name: "slide-right", mode: "out-in" }, }` Add 2 views which contains VImg with remote image. Run app & fast switch...

I have a Nuxt 3.x project that I started over a year ago and that worked with the vite vuetify plugin. I wanted to install this module instead but when...

# Environment * Node : `20.9.0` ## Packages * nuxt: `3.13.2` * vue: `3.5.11` * vue-router: `4.4.5` * vuetify-nuxt-module: `0.18.3` * vuetify (as dependency of vuetify-nuxt-module): `3.7.2` # Description Using...

``` vuetify: { vuetifyOptions: { icons: { defaultSet: 'mdi', aliases, sets: { custom, mdi, }, }, }, ``` ``` Object literal may only specify known properties, and 'mdi' does not...

Currently it is only possible to set a csp nonce via `theme.cspNonce` configuration object (will therefore be static). This should be possible dynamically. `useTheme()` via the global property already allows...

I use my own module file as below: modules/my-vuetify-module.ts ``` import { defineNuxtModule } from '@nuxt/kit' export default defineNuxtModule({ setup(_options, nuxt) { nuxt.hook('vuetify:registerModule', register => register({ moduleOptions: { styles: "none"...

### Description Changes included in #207 handling relative paths when we're using absolute paths (`unconfig`): - Nuxt v4 compat not calling `handleHotUpdate` on configuration changes and not watching files/folders outside...

As the title suggests, I'm facing an issue where I have a separate repository for common components, which I build using Vite and link to the package.json in the main...