We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0268569 commit cdc25d9Copy full SHA for cdc25d9
frontend/src/utils/file-reader.ts
@@ -45,6 +45,7 @@ export class FileReader {
45
const items = await fs.readdir(dir, { withFileTypes: true });
46
47
for (const item of items) {
48
+ if (item.name.includes('node_modules')) continue;
49
const fullPath = path.join(dir, item.name);
50
const relativePath = path.relative(this.basePath, fullPath);
51
0 commit comments