Luis Gomes

Results 30 comments of Luis Gomes

Hello, I also have the latest version of nuxt and nuxt-image and IPX is working correctly. As I've stated on my previous post, even though IPX converts between formats, **_the...

Hi, Try using the following on nuxt.config.ts: ``` image: { provider: 'ipx', ipx: { modifiers: { format: 'webp' } } } ```

Hi, I think you probably misread the docs, there is no "formats" option, only a [format](https://image.nuxt.com/get-started/configuration#format) option that is used by the NuxtPicture component (?)

@moshetanzer that's the thing, the format option only applies when using the NuxtPicture component (that encapsulates html's picture tag) and not NuxtImg. From the docs: > You can use this...

Those are two different things. One (and your initial statement) was the "format" option on nuxt.config.ts Now you're referring to a prop on nuxtimg component.

Hi, I've just updated a nuxt project from 0.14.10 to the latest 0.15.5 and also found a few "hydration mismatches" that weren't present before. Tried downgrading versions and apparently the...

Hey, Sure, [here](https://stackblitz.com/edit/nuxt-starter-mzvvbx?file=app.vue) is a simplified sample of what i'm using. But note that even without modification, your stackblitz link already shows an hydration error (at least on my end...

> Yeah, it doesn't do the network fetch. I agree we should improve the message to guide users to install packages `@iconify-json/*` Do we really need to add those packages...

Hi, Create a file inside the `plugins` folder called `text-clamp.client.ts` with the following contents: ``` import TextClamp from 'vue3-text-clamp' export default defineNuxtPlugin(nuxtApp => { nuxtApp.vueApp.use(TextClamp) }) ```

Hi, I've recently came across what I believe is the same issue as reported here. So, for example, if I have this page (simplified): ```vue const route = useRoute() const...