Tag: nested-routes
-
3 levels nested dynamic routes with Next.js
0 I’m trying to achieve a 3 levels dynamic routes in my next js application. So far I just obtain a 2 levels dynamic routes. All the data are coming from a headless CMS. I’m using graphlQL So far I managed to obtain a 2 levels: blog/[category]/[post]. However I can’t make this working: blog/[category]/[subcategory]/[post] This…