I'm running the example in the NextJS Repo for dynamic routes that is at this URL:
https://github.com/vercel/next.js/tree/canary/examples/dynamic-routing
When running the app and I browse to the URL:
http://localhost:3000/about
It works correctly and displays a good page with a status 200.
When I browse to http://localhost:3000/aboutBADROUTE
I get a 404 as I would expect.
However, this is the current correct route:
http://localhost:3000/post/first (returns 200)
But, this: http://localhost:3000/post/firstBADROUTE
also returns a 200 which is not what I want. I want that also to return a 404.
What am I misunderstanding?