Next.js Discord

Discord Forum

Why am I getting 404 error when I visit the /people page

Answered
Ragdoll posted this in #help-forum
Open in Discord
Answered by Toyger
it's standart behaviour with parallel routes
https://github.com/vercel/next.js/issues/48090
you need to add default.tsx into @team and @analytics folders with same content as their page.tsx
View full answer

2 Replies

Toyger
it's standart behaviour with parallel routes
https://github.com/vercel/next.js/issues/48090
you need to add default.tsx into @team and @analytics folders with same content as their page.tsx
Answer
RagdollOP
Yes this solved it. Thanks.