Performance Issue
The file pattern in \ is overly broad and matches 10,240 files, causing performance degradation.
Problem
The pattern \ is too generic and matches an excessive number of files.
Expected behavior
File pattern matching should be more specific to match only relevant files.
Possible Solution
Refine the file pattern to be more specific and exclude unnecessary paths. Consider:
- Using specific directory patterns
- Excluding test/build directories
- Using more precise matching rules
Files Affected
Discovered By
Build performance analysis during dev server startup.