Route Groups
~10 mins
- nextjs
Route Groups
- dashboard/(overview)/page.tsx
- dashboard/customer/page.tsx
- dashboard/invoices/page.tsx
- Route groups allow you to organize files into logical groups without affecting the URL path structure.
- When you create a new folder using parentheses (), the name won't be included in the URL path.
- So
/dashboard/(overview)/page.tsxbecomes/dashboard.