'Moving Pages folder in Next.js application to src folder
In a create-next-app Next.js application, I want to move the pages folder in the root directory to a src folder. I added a jsconfig.json with the code (below), however now I get the error message "404 | This page could not be found." Anyone have any insight? (Sorry beginner to web development)
{
"compilerOptions": {
"baseUrl": "src"
}
}
Solution 1:[1]
Nextjs by default supports moving /pages to src/ folder.
- Create a /src folder in the root directory.
- Delete the
/.nextfolder - Move
/pagesto the /src folder Remember package.json,.gitignoreand other config files needs to be in the root directory and should not be moved to the /src folder.
Once that is done just run the command $ npm run dev , so you can view it on your localhost.
Solution 2:[2]
You need to stop the server and then do npm run dev. That solved my problem when I moved things into the src directory and started getting 404 pages.
Solution 3:[3]
As @Thierry mentioned in the comments, according to the docs "Pages can also be added under src/pages as an alternative to the root pages directory. The src directory is very common in many apps and Next.js supports it by default."
So, src/pages will be ignored if pages is present in the root directory.
More at the official docs: https://nextjs.org/docs/advanced-features/src-directory
Solution 4:[4]
In case you are using NextJS + TailwindCSS, you need to change the following in tailwind.config.js after moving files under the src directory:
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
...
...
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | John Fash |
| Solution 2 | |
| Solution 3 | Charles Pine |
| Solution 4 | Ssh Quack |
