Skip to content
Advertisement

Error Couldn’t find a `pages` directory. Please create one under the project root”

Previously my project setup was

JavaScript

This was working fine but I changed the structure to following

JavaScript

now this one is not working. I am getting error Couldn't find apagesdirectory. Please create one under the project root

Here is my updated next.config.js

JavaScript

for absolute import(import Button from ‘components/Button’)

jsconfig.json

JavaScript

package.json

JavaScript

.babelrc

JavaScript

Advertisement

Answer

As per the official NextJs documentation pages folder can be moved inside the src folder. But Config files like next.config.js and tsconfig.json should be inside the root directory, moving them to src won’t work. Same goes for the public directory.

Move your next.config.js file to root folder.

Reference: https://nextjs.org/docs/advanced-features/src-directory

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement