Previously my project setup was
JavaScript
x
8
1
public
2
.next
3
src
4
pages
5
components
6
assets
7
next.config.js
8
This was working fine but I changed the structure to following
JavaScript
1
11
11
1
public
2
src
3
client
4
next.config.js
5
jsconfig.json
6
pages
7
components
8
assets
9
server
10
index.js
11
now this one is not working. I am getting error Couldn't find a
pagesdirectory. Please create one under the project root
Here is my updated next.config.js
JavaScript
1
18
18
1
const withPlugins = require("next-compose-plugins");
2
const optimizedImages = require("next-optimized-images");
3
const withPWA = require("next-pwa");
4
5
module.exports = withPlugins(
6
[optimizedImages],
7
[
8
withPWA({
9
pwa: {
10
dest: "public",
11
},
12
}),
13
],
14
{
15
distDir: '../../dist/client',
16
}
17
);
18
for absolute import(import Button from ‘components/Button’)
jsconfig.json
JavaScript
1
6
1
{
2
"compilerOptions": {
3
"baseUrl": "client/"
4
}
5
}
6
package.json
JavaScript
1
12
12
1
"scripts": {
2
"dev:client": "nextjs src/client",
3
"dev:server": "node src/server --out-dir dist/server --source-maps --watch",
4
"dev": "dotenv -e .env.development yarn dev:client & yarn dev:server",
5
"build": "yarn build:client && yarn build:server",
6
"build:client": "dotenv -e .env.production next build src/client",
7
"build:server": "node src/server --out-dir dist/server --source-maps",
8
"build:staging": "yarn build:staging:client && yarn build:server",
9
"build:staging:client": "dotenv -e .env.staging next build src/client",
10
"start": "next start",
11
},
12
.babelrc
JavaScript
1
17
17
1
{
2
3
"plugins": [
4
[
5
"styled-components",
6
{
7
"ssr": true,
8
"displayName": true,
9
"preprocess": false
10
}
11
]
12
],
13
"presets": [
14
"next/babel"
15
]
16
}
17
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