Joaquín Sánchez
Joaquín Sánchez
Vuetify ssr entries are used by vuetify in useDisplay composable, some components use that composable to render its content (nav drawer for example via useBreakpoints or breakpoint internal logic IIRC)
About http client hints, this module will use a cookie only for color scheme for browsers not supporting the client hints. I have sent a PR to nuxt to add...
@jrutila that's the expected behaviour, you don't need to use almost any Vuetify imports, the module will include the aliases for you.
@jrutila read the docs https://vuetify-nuxt-module.netlify.app/guide/globals/global-components.html
@AasmundN Try disabling `inlineSSRStyles` in your Nuxt config file, I'll try to figure out what's happening, the paths for scss files using absolute paths, should be prefixed with `/@fs/`, Vuetify...
> @userquin Disabling `inlineSSRStyles` seems to have fixed the problem. I'm guessing doing that shouldn't be necessary? Experimental `inlineSSRStyles` is enabled by default, we need to change the custom Vuetify...
It seems using Vuetify `configFile` styles and Nuxt `inlineSSRStyles` are incompatible, there is no way to get individual chunks
The problem is the nuxt nitro renderer, since we've some .sass references we will receive the request, but it is missing, I have it working just returning an empty string...
This is the page without inlining SSR styles:  Inlining SSR styles: 
Vuetify should avoid use SASS...