DEV Community

Cover image for An overview of Next Route Groups
Gabriel Penteado
Gabriel Penteado

Posted on • Updated on • Originally published at gabripenteado.Medium

An overview of Next Route Groups

Next Route Groups are a way to organize routes in the app directory without changing the URL paths. By enclosing a folder name in parentheses, you can create a Route Group that helps keep related routes together. This allows for better organization and management of routes within the app.

next-route-groups

In this example, (admin-routes) (auth-routes) (client-routes)
are route groups. they are grouped together for better organization, without altering URL structure.

The URL path to the unauthorized page will be only /unauthorized .

Next Route Groups enables you to organize your content logically, create nested layouts, and maintain a clean URL structure.


Thank you for reading.
If you liked this article shared it!
I appreciate your feedback.

Top comments (0)