Error 'Cannot read properties of undefined (reading external)' when running bun run dev with Nuxt 3.

Hey everyone! I'm facing an issue when trying to run my Nuxt project with bun run dev. I created the project using npm create nuxt@latest -- -t ui --packageManager=bun, but when I run the dev command, I get the error below. It seems related to Nitro, but I'm not sure how to fix it. Has anyone encountered this or have any ideas on what might be causing it? Here's my environment: - Operating System: Linux - Node Version: v20.12.2 - Nuxt Version: 3.16.2 - CLI Version: 3.24.0 - Nitro Version: 2.11.8 - Package Manager: [email protected] - User Config: devtools, modules, css, future, compatibilityDate - Runtime Modules: @nuxt/[email protected], @nuxt/[email protected], @nuxt/[email protected], @nuxt/[email protected] Here's the full error:
$ nuxt dev
Nuxt 3.16.2 with Nitro 2.11.8
➜ Local: http://localhost:3000/
➜ Network: use --host to expose

ℹ Nuxt Icon server bundle mode is set to local
✔ Nuxt Icon discovered local-installed 2 collections: lucide, simple-icons
ℹ Running with compatibility version 4
✔ Vite client built in 32ms
✔ Vite server built in 272ms

[ nuxi 11:51:49 AM] ERROR Cannot start nuxt: Cannot read properties of undefined (reading 'external')

at getRollupConfig (node_modules/nitropack/dist/rollup/index.mjs:1788:23)
at build (node_modules/nitropack/dist/core/index.mjs:1723:24)
at async build (node_modules/nuxt/dist/shared/nuxt.iYoBCR2R.mjs:7186:3)
at async Promise.all (index 1)
at async NuxtDevServer._load (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:215:5)
at async NuxtDevServer.load (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:111:7)
at async NuxtDevServer.init (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:106:5)
at async Object.run (node_modules/@nuxt/cli/dist/chunks/dev-child.mjs:94:5)
at async runCommand (node_modules/citty/dist/index.mjs:316:16)
at async runCommand (node_modules/citty/dist/index.mjs:307:11)
$ nuxt dev
Nuxt 3.16.2 with Nitro 2.11.8
➜ Local: http://localhost:3000/
➜ Network: use --host to expose

ℹ Nuxt Icon server bundle mode is set to local
✔ Nuxt Icon discovered local-installed 2 collections: lucide, simple-icons
ℹ Running with compatibility version 4
✔ Vite client built in 32ms
✔ Vite server built in 272ms

[ nuxi 11:51:49 AM] ERROR Cannot start nuxt: Cannot read properties of undefined (reading 'external')

at getRollupConfig (node_modules/nitropack/dist/rollup/index.mjs:1788:23)
at build (node_modules/nitropack/dist/core/index.mjs:1723:24)
at async build (node_modules/nuxt/dist/shared/nuxt.iYoBCR2R.mjs:7186:3)
at async Promise.all (index 1)
at async NuxtDevServer._load (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:215:5)
at async NuxtDevServer.load (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:111:7)
at async NuxtDevServer.init (node_modules/@nuxt/cli/dist/chunks/dev2.mjs:106:5)
at async Object.run (node_modules/@nuxt/cli/dist/chunks/dev-child.mjs:94:5)
at async runCommand (node_modules/citty/dist/index.mjs:316:16)
at async runCommand (node_modules/citty/dist/index.mjs:307:11)
Any help would be greatly appreciated! Thanks!
3 Replies
kapa.ai
kapa.ai3d ago
Hi @Hermes Alves. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the error you're experiencing with Bun and Nuxt 3, this appears to be related to issues between Bun as a runtime and Nitro (Nuxt's server engine). Several similar issues have been reported in the Nuxt GitHub repository. Possible Solutions 1. Use Polling for File Watchers The most common workaround for Bun + Nuxt 3.16.x issues is to configure your watchers to use polling in your nuxt.config.ts:
export default defineNuxtConfig({
// other options...

watchers: {
chokidar: {
usePolling: true,
},
},

nitro: {
watchOptions: {
usePolling: true,
},
},
});
export default defineNuxtConfig({
// other options...

watchers: {
chokidar: {
usePolling: true,
},
},

nitro: {
watchOptions: {
usePolling: true,
},
},
});
This solution was suggested in Nuxt 3.16.0 - Unable to run the DEV Server with bun and has helped many users. 2. Set Environment Variable for Nitro If you're on Windows or experiencing socket-related errors, you can try setting the NITRO_NO_UNIX_SOCKET environment variable as mentioned in Nuxt 3.16.0 - Unable to run dev server with bun. 3. Clean Installation Try removing your lockfile, node_modules, .nuxt, and .output directories, then reinstall dependencies:
rm -rf node_modules .nuxt .output package-lock.json
bun install
rm -rf node_modules .nuxt .output package-lock.json
bun install
This approach helped users in this issue with similar Nitro-related errors. 4. Try Without --bun Flag If possible, try running without the --bun flag:
bun run dev
bun run dev
Instead of:
bun --bun run dev
bun --bun run dev
This might use Node.js as the runtime instead of Bun, which could avoid the compatibility issues. 5. Update to Latest Versions Make sure you're using the latest versions of Bun and Nitro. Recent releases of Nitro (2.11.6+) have included fixes for Bun compatibility issues. Additional Context There have been several reported issues with Bun and Nuxt 3.16.x, particularly related to file watching, sockets, and Nitro server initialization. The Nuxt team is aware of these issues and has been working on fixes in recent releases. If none of these solutions work, you might want to consider temporarily using npm or yarn as your package manager until these compatibility issues are fully resolved. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai3d ago
<@727670710033580124> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Hermes Alves
Hermes AlvesOP3d ago
Hey, thanks for the suggestions! Unfortunately, none of the options worked for me. I tried all three: 1. Use Polling for File Watchers: I added the watchers and nitro.watchOptions with usePolling: true to my nuxt.config.ts as suggested, but I still get the same Cannot read properties of undefined (reading 'external') error when running bun run dev. 2. Set Environment Variable for Nitro: I set the NITRO_NO_UNIX_SOCKET environment variable (I’m on Linux, not Windows, but I gave it a shot anyway), and it didn’t make a difference—same error. 3. Clean Installation: I removed node_modules, .nuxt, .output, and the lockfile, then ran bun install again. After that, I tried bun run dev, but the error persists. I’m still stuck with this issue. Any other ideas? Here’s my setup again for reference: - Operating System: Linux - Node Version: v20.12.2 - Nuxt Version: 3.16.2 - CLI Version: 3.24.0 - Nitro Version: 2.11.8 - Package Manager: [email protected] Thanks for any further help!

Did you find this page helpful?