-
I have routes:
but when I browse to http://localhost:3000/p/project-name/i/123 The page for Do I have this set up incorrectly? Or is there something else I am doing wrong? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
pburrows
Dec 7, 2023
Replies: 1 comment 1 reply
-
To answer my own question, the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
pburrows
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To answer my own question, the
p.$project.tsx
was acting as the layout file for all the routes beneath it. I need to add an<Outlet />
to that file and create ap.$project._index.tsx
as the default page for that route.