Replies: 1 comment
-
|
merged #4737 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Currently, @wagmi/vue is disabled in Nuxt 4.x projects due to a version check that only allows ^3.0.0. This prevents developers from using the library after upgrading to Nuxt 4, even though Nuxt 4 is mostly backward-compatible with Nuxt 3.
Proposed Solution
• Relax the Nuxt version constraint from ^3.0.0 to >=3.0.0 <5.0.0, or
• Explicitly add Nuxt 4.x support in the module’s meta configuration.
• If full testing for Nuxt 4.x is not yet complete, consider providing an experimental opt-in flag so that developers can test and provide feedback.
Benefits
• Allows early adopters of Nuxt 4 to continue using @wagmi/vue without forking.
• Helps gather real-world compatibility feedback from the community.
Additional Context
Nuxt 4 builds upon Nuxt 3 and maintains API compatibility for most modules. In local tests, @wagmi/vue appears to work with Nuxt 4.x when bypassing the version check.
Beta Was this translation helpful? Give feedback.
All reactions