Cannot create new nuxt? Error with requested module 'db0'
Just tried to update, but also errors out when installing a new project.
npx nuxi@latest init testproject
After nuxt prepare
, it errors out with The requested module 'db0' does not provide an export named 'connectors'
However i couldn't find any issue on it. Anyone else got a similar error? (a friend of mine also did...)4 Replies
Hi @brunomgmateus. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
This issue appears to be related to a recent change in Nuxt 3.15.3 that's causing problems with the
db0
module. Based on the knowledge sources provided, I can offer some insights and a potential workaround.
The error you're encountering is similar to issues reported in recent Nuxt GitHub issues, particularly after upgrading to version 3.15.3. For example, in Issue #30770, users reported problems with dependencies and incorrect paths after upgrading.
A possible workaround for this issue, as suggested in Issue #30749, is to add db0
to the noExternal
list in your Nuxt configuration. You can try this by adding the following to your nuxt.config.ts
file:
This configuration tells Vite not to treat db0
as an external module, which might resolve the issue with missing exports.
If this workaround doesn't solve the problem, it's worth noting that this seems to be a recent issue that the Nuxt team is likely aware of. As mentioned in the Reporting Bugs documentation, you might want to:
1. Check if there's already an open issue for this problem in the Nuxt GitHub repository.
2. If not, consider creating a minimal reproduction of the issue and reporting it to the Nuxt team.
In the meantime, if you need a working environment urgently, you might want to consider temporarily downgrading to the previous version of Nuxt (3.14.x) until this issue is resolved.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@443756929966407681> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
No, didn't help...
Ok, there's a new issue regarding it now.
Solution is to add
"overrides": { "db0": "^0.2.3"}}
to you package.json.
Here's the issue: https://github.com/nuxt/nuxt/issues/30791GitHub
The requested module
db0
does not provide an export named `connec...Environment node v22.5.1 Reproduction Running bun x nuxi@latest init test Describe the bug Initializing a new project throws error. The error is not bun specific. Additional context Logs