diff --git a/packages/bruno-electron/src/app/watcher.js b/packages/bruno-electron/src/app/watcher.js index 51fa79f6f..fa548c6e8 100644 --- a/packages/bruno-electron/src/app/watcher.js +++ b/packages/bruno-electron/src/app/watcher.js @@ -412,7 +412,7 @@ class Watcher { setTimeout(() => { const watcher = chokidar.watch(watchPath, { ignoreInitial: false, - usePolling: false, + usePolling: watchPath.startsWith("\\\\") ? true : false, ignored: (path) => ['node_modules', '.git'].some((s) => path.includes(s)), persistent: true, ignorePermissionErrors: true,