Joaquín Sánchez
Joaquín Sánchez
It is not working... maybe I have changed so many things that now it doesn't work in my local...
@AasmundN You can try it adding this simple Vite plugin to your nuxt config file, removing `inlineSSRStyles: false` from experimental option: ```ts vite: { plugins: [{ name: 'vuetify-nuxt-inline-ssr-styles', enforce: 'pre',...
To access message using Vuetify `$t` you need to prefix the key with `$vuetify.`: `$t('$vuetify.welcome')`
i18n module version? I'll try to figure out what's happening...
@AasmundN It is weird, your repro working, check my fork here: https://stackblitz.com/edit/github-6zjd6y-eqyxxp?file=.npmrc I've only change the package manager adding .npmrc
You need to configure i18n module properly, check the i18n option in the playground, there are a few options you need to configure. I need to fix some edge cases...
`sets` is single string or array of icon sets: ```ts sets?: IconFontName | IconFontName[] | FontIconSet[]; ``` https://vuetify-nuxt-module.netlify.app/guide/icons/
If you're adding custom icons you need to add them using a Nuxt plugin, check https://vuetify-nuxt-module.netlify.app/guide/#nuxt-plugin-hooks (broken link to icons) and https://vuetify-nuxt-module.netlify.app/guide/icons/unocss-preset-icons.html#adding-a-new-vuetify-icon-set (the example is using UnoCSS Preset Icons but...
We need to add the `cspNonce` entry in the theme, you can try generating the cspNonce, add a Nuxt Plugin, register `vuetify:before-create` hook and apply the `cspNonce` to the theme....
@GreyXor yes, is it working?