Nathan Rowe
Nathan Rowe
The value is gathered from json so we don't have a solid type for it
I've got the same issue using the azure-ad-b2c provider. Downgrading to the previous nuxt version (3.12.3) did not resolve this issue for me, ```ts import AzureB2CProfile from 'next-auth/providers/azure-ad-b2c' import {...
> @n-rowe I am yet not sure if you experience the same issue as you seem not to be getting an insanely long error message as the OP? I'm unsure...
> Thank you for clarifying, it may actually be related to `$fetch` implementation being changed in 3.12.4, I will check their commits Changing $fetch didn't completely resolve my issue as...
> @n-rowe did you figure out a workaround without patching the package locally? I also upgraded the package and took another crack at figuring out the problem, I had some...
I'm having a similar issue, is there a workaround for this?
If you're using pnpm you will need to add an override for the sharp package, https://github.com/nuxt/image/issues/1871 ```json "pnpm": { "overrides": { "sharp": "0.33.4" }, }, ``` The same might be...
I think it should be `request_body_enforcement` to match the settings in [azurerm_web_application_firewall_policy](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/web_application_firewall_policy) which most of these settings seem to inherit from. Also might be worth adding `file_upload_enforcement` as this is...
This is because it's including native binaries for sharp, this is just the server bundle size and does not get sent to clients
On `@nuxt/image` 1.11.0, I got this when upgrading `rolldown-vite` from 7.1.0 to 7.1.1+. I don't use `useImage` anywhere in my code, I just use the `NuxtImg` component. Downgrading `@nuxt/image` to...