We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a1a1f0 commit ade319fCopy full SHA for ade319f
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) contain 15k+ generated files.
41
+ // On macOS, watching them all opens ~15k file descriptors which causes spawn EBADF
42
+ // when the esbuild service process tries to start. Excluding them from Nuxt's
43
+ // watcher (isIgnored check) prevents chokidar from opening per-file kqueue FDs.
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