Ignore .paperclip paths in restart tracking

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
dotta
2026-03-23 16:09:44 -05:00
parent 0bb1ee3caa
commit 43b21c6033
2 changed files with 9 additions and 1 deletions

View File

@@ -21,6 +21,9 @@ export function shouldTrackDevServerPath(relativePath) {
const segments = normalizedPath.split("/");
const basename = segments.at(-1) ?? normalizedPath;
if (segments.includes(".paperclip")) {
return false;
}
if (ignoredTestConfigBasenames.has(basename)) {
return false;
}