You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: detect Next.js route groups as valid project structure
The project validator failed to recognize Next.js projects using route
groups (parenthesized directories like (app), (dashboard)). The
isTargetFile function did an exact directory match against potential
paths, missing layout files inside route group subdirectories.
Added route group pattern matching to isTargetFile so that paths like
app/(marketing)/layout.tsx match the potentialPath 'app'.
Fixes#2936
0 commit comments