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'
ERROR The requested module 'db0' does not provide an export named 'connectors' 5:49:27 PM

import { connectors } from 'db0';
^^^^^^^^^^
SyntaxError: The requested module 'db0' does not provide an export named 'connectors'
at ModuleJob._instantiate (node:internal/modules/esm/module_job:180:21)
at async ModuleJob.run (node:internal/modules/esm/module_job:263:5)
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:547:26)
at async loadNuxt (node_modules/.pnpm/@[email protected][email protected][email protected]/node_modules/@nuxt/kit/dist/index.mjs:2666:37)
at async Object.run (node_modules/.pnpm/@[email protected][email protected]/node_modules/@nuxt/cli/dist/chunks/prepare.mjs:30:18)
at async runCommand (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:316:16)
at async runCommand (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:307:11)
at async runMain (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:445:7)
ERROR The requested module 'db0' does not provide an export named 'connectors' 5:49:27 PM

import { connectors } from 'db0';
^^^^^^^^^^
SyntaxError: The requested module 'db0' does not provide an export named 'connectors'
at ModuleJob._instantiate (node:internal/modules/esm/module_job:180:21)
at async ModuleJob.run (node:internal/modules/esm/module_job:263:5)
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:547:26)
at async loadNuxt (node_modules/.pnpm/@[email protected][email protected][email protected]/node_modules/@nuxt/kit/dist/index.mjs:2666:37)
at async Object.run (node_modules/.pnpm/@[email protected][email protected]/node_modules/@nuxt/cli/dist/chunks/prepare.mjs:30:18)
at async runCommand (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:316:16)
at async runCommand (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:307:11)
at async runMain (node_modules/.pnpm/[email protected]/node_modules/citty/dist/index.mjs:445:7)
However i couldn't find any issue on it. Anyone else got a similar error? (a friend of mine also did...)
4 Replies
kapa.ai
kapa.ai3mo ago
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:
export default defineNuxtConfig({
vite: {
ssr: {
noExternal: ['db0']
}
}
})
export default defineNuxtConfig({
vite: {
ssr: {
noExternal: ['db0']
}
}
})
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: ----------------------
kapa.ai
kapa.ai3mo ago
<@443756929966407681> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
brunomgmateus
brunomgmateusOP3mo ago
No, didn't help...
brunomgmateus
brunomgmateusOP3mo ago
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/30791
GitHub
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

Did you find this page helpful?