We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 990409d commit 9fb8a25Copy full SHA for 9fb8a25
packages/react-router-dev/config/config.ts
@@ -1180,7 +1180,8 @@ export function isIgnoredByWatcher(
1180
}
1181
1182
// Filter out non-regular files (sockets, pipes, etc.) that
1183
- // crash fs.watch() on macOS with errno -102
+ // crash `fs.watch()` on macOS with errno -102
1184
+ // https://github.com/paulmillr/chokidar/issues/1391
1185
try {
1186
let stat = fs.statSync(path, { throwIfNoEntry: false });
1187
if (stat && !stat.isFile() && !stat.isDirectory()) {
0 commit comments