We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a1a1f0 commit 018e601Copy full SHA for 018e601
1 file changed
nuxt/nuxt.config.ts
@@ -37,6 +37,12 @@ export default defineNuxtConfig({
37
}
38
},
39
40
+// public/ (11ty static output) and .output/ (nuxt build) are large generated
41
+// directory trees. On macOS, chokidar watches them via kqueue which opens one
42
+// file descriptor per directory, pushing the process FD count high enough to
43
+// cause spawn EBADF when esbuild tries to start its service process.
44
+ ignore: ['public/**', '.output/**'],
45
+
46
// Dev proxying to 11ty is handled by server/middleware/legacy.ts
47
// to allow per-route exclusions as pages are migrated.
48
})
0 commit comments