I have the following url:
/job/engineer_123456/edit/abcde
Now when I run my local server: npm run dev ("next src/") then when i go to that link it works. However when I deploy my project (to firebase) then I get a 404 from that url.
I have a feeling there is a clash in the routing as my NextJS page directory structure looks like this /job is under pages):
Could it be that on production for some reason, when I go to that link, i am going to /job/[job].js instead of /job/[job]/edit/[editId].js
I am really confused why production shows a 404 page but locally it works.
