After update my Next.js app to 9.4 version I can't navigate to my route.
Working only main page '/'
(index.js). Everything worked very well before.
Now, when I run my app the terminal show this terminal info and, when I want to go for example to '/about'
I have error 404.
Asked
Active
Viewed 72 times
0

brc-dd
- 10,788
- 3
- 47
- 67

Bartłomiej Olech
- 25
- 5
-
Have you tried removing the `.next/` folder before starting the dev server? Or remove `node_modules` and `npm i`/`yarn` again? – hangindev.com Jun 23 '20 at 06:49
-
@Hangindev Yes. The same – Bartłomiej Olech Jun 23 '20 at 12:21
1 Answers
0
I had names of pages files with a capital letters (it works in 9.3 version of Next but not now). I changed it to lowercase and now works.

Bartłomiej Olech
- 25
- 5