docs(core): fix dev output path so it does not conflict with prod (#11779)

This commit is contained in:
Jack Hsu 2022-08-30 10:14:08 -04:00 committed by GitHub
parent 9999215211
commit 8d85990b90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -1 +1,2 @@
nx-dev/**/jest.config.js
.next

View File

@ -1,4 +1,4 @@
{
"extends": ["plugin:@nrwl/nx/react", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"]
"ignorePatterns": ["!**/*", "**/.next"]
}

View File

@ -50,7 +50,9 @@
"outputPath": "dist/nx-dev/nx-dev"
},
"configurations": {
"development": {},
"development": {
"outputPath": "nx-dev/nx-dev"
},
"production": {}
}
},