Skip to content

Commit 8d85990

Browse files
authored
docs(core): fix dev output path so it does not conflict with prod (nrwl#11779)
1 parent 9999215 commit 8d85990

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.nxignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
nx-dev/**/jest.config.js
1+
nx-dev/**/jest.config.js
2+
.next

nx-dev/nx-dev/.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": ["plugin:@nrwl/nx/react", "../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*"]
3+
"ignorePatterns": ["!**/*", "**/.next"]
44
}

nx-dev/nx-dev/project.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@
5050
"outputPath": "dist/nx-dev/nx-dev"
5151
},
5252
"configurations": {
53-
"development": {},
53+
"development": {
54+
"outputPath": "nx-dev/nx-dev"
55+
},
5456
"production": {}
5557
}
5658
},

0 commit comments

Comments
 (0)