Route between slugs
Unanswered
Dwarf Crocodile posted this in #help-forum
Dwarf CrocodileOP
Is it possible to create a parallel route in this way?:
I tried exactly as in the example, but Next.js returns "not found."
app
|-- @chart
|-- [phase]
|-- ranking
|-- [dashboard]
|-- page.tsx
|-- layout.tsx
|-- page.tsxI tried exactly as in the example, but Next.js returns "not found."
6 Replies
@Dwarf Crocodile Is it possible to create a parallel route in this way?:
`app
|-- @chart
|-- [phase]
|-- ranking
|-- [dashboard]
|-- page.tsx
|-- layout.tsx
|-- page.tsx`
I tried exactly as in the example, but Next.js returns "not found."
you need /app/[phase]/ranking/[dashboard]/page.tsx for it to be found
its after all,, parallel...
Dwarf CrocodileOP
Hey Alfonsus! Yep, this route exists; however, it still doesn't work.
try deleting
next folder and rerenderDwarf CrocodileOP
Already done 

so whats your route structure currently like?