Kamil

Results 5 comments of Kamil

> The reason for this behaviour is that Nuxt Image documents `fill=fill` as how imgix uses `scale`: > > > **nuxt image docs**: `fill`: Ignore the aspect ratio of the...

Yeah looks like it's the new default behaviour in 4.4.0 version. It seems like that's connected to how [the client-preset is configuring the typescript plugin](https://github.com/dotansimha/graphql-code-generator/commit/8471a180cd61dc03dedace87876c5973b09b35f8#diff-ed39ff0c875833ec0c3683ef7180f00064b8e78694999501f2bb2871bbeca9f0R221) and only enabling enum and...

@KieranTH looks like there is already an open issue about this. Have a look -> the [open issue](https://github.com/dotansimha/graphql-code-generator/issues/10167)

I'am experiencing same issue. My i18n config: ```` i18n: { lazy: true, // works perfectly fine baseUrl: 'https://somedomain.com', // never gets executed // baseUrl: () => { // return 'https://somedomain.com';...

I found a solution which I'am satisfied with. Might also help you. It's not ideal but it's working. I modify the baseURL using a [Nuxt Plugin](https://nuxt.com/docs/guide/directory-structure/plugins). ```` // plugins/i18dynamicBaseUrl.ts export...