I'm having trouble with a nested not-found.tsx. Imagine following directory structure:
- app/
-- layout.tsx
-- not-found.tsx
-- folder/
--- layout.tsx
--- not-found.tsx
When I requestlocalhost:3000/folder/foobarit shows me thenot-found.tsxof the root directory. I expected that it shows me thenot-found.tsxof thefolderdirectory instead.
Am I misunderstanding something? Are nestednot-found.tsxnot a thing?