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 dab97ad commit a02d368Copy full SHA for a02d368
src/server/app.ts
@@ -66,7 +66,8 @@ export function startLocalChangeWatcher({
66
}) {
67
const wsServer = new WebSocketServer({ server });
68
const watcher = chokidar.watch(watchPath, {
69
- ignored: ["**/.remote/**"],
+ ignored: [/node_modules|\.git/, "**/.remote/**"],
70
+ persistent: true,
71
});
72
watcher.on("change", () => {
73
wsServer.clients.forEach((client) => {
0 commit comments