Workspace Settings (Deprecated)
Last updated
Was this helpful?
Was this helpful?
// eslint-disable-next-line @typescript-eslint/no-var-requires
const nrwlConfig = require('./../../libs/shared/webpack/nrwl-config')
module.exports = (config, context) => {
// Add our common webpack config
nrwlConfig(config)
// Here you can add app specific config
return config
}"e2e": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "apps/web-e2e/cypress.config.ts",
"tsConfig": "apps/web-e2e/tsconfig.e2e.json",
"baseUrl": "http://localhost:4200",
"devServerTarget": "web:serve"
},
"configurations": {
"production": {
"devServerTarget": ""
}
}
},"e2e-ci": {
"executor": "@nx/workspace:run-commands",
"options": {
"command": "yarn e2e-ci -n web-e2e -d dist/apps/web"
}
},"e2e-ci": {
"executor": "@nx/workspace:run-commands",
"options": {
"command": "yarn e2e-ci -n service-portal-e2e -t react -f dist/apps/service-portal -b /minarsidur"
}
},node scripts/e2e-ci.js -hyarn e2e web-e2eyarn nx run web-e2e:e2e-ci