Nuxt 3.0.0-rc.8 incompatible?
See original GitHub issueReproduction
N/A
Describe the bug
I have been using the module without problems, then I needed to upgrade Nuxt Content so I followed these instructions https://content.nuxtjs.org/guide/migration/edge-channel/
After deleting node_modules & yarn.lock, and re-running yarn install, I now get the following warning on running ‘yarn dev’:
WARN Module FormKit is disabled due to incompatibility issues:
- [nuxt] Nuxt version
^3.0.0
is required but currently using3.0.0-rc.8
My package.json file looks like this:
{ “private”: true, “scripts”: { “build”: “nuxt build”, “dev”: “nuxt dev”, “generate”: “nuxt generate”, “preview”: “nuxt preview” }, “devDependencies”: { “@nuxt/content”: “npm:@nuxt/content-edge@latest”, “@nuxtjs/supabase”: “^0.1.23”, “@nuxtjs/tailwindcss”: “^5.3.2”, “nuxt”: “3.0.0-rc.8” }, “dependencies”: { “@formkit/nuxt”: “1.0.0-beta.10”, “@formkit/themes”: “^1.0.0-beta.10”, “@headlessui/vue”: “^1.6.7”, “@heroicons/vue”: “^2.0.10” } }
Environment
• OS: Mac • Browser Chrome • Version 1.0.0-beta.10
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:6 (1 by maintainers)
Top GitHub Comments
This was a change on the nuxt side, you can now install it with
@formkit/nuxt@next
until the new version is launched.@bennyzen
Have your tried “next”? This is a fork of your reproduction repo using “next” instead of beta.11 https://stackblitz.com/edit/nuxt-starter-15xf1l?file=package.json,app.vue