Files
ghostfolio/apps/client-e2e/project.json
Thomas Kaul 8cee03f16a Feature/upgrade Nx to version 21.1.2 (#4809)
* Upgrade Nx to version 21.1.2

* Update changelog
2025-06-05 17:38:15 +02:00

23 lines
546 B
JSON

{
"name": "client-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/client-e2e/src",
"projectType": "application",
"tags": [],
"implicitDependencies": ["client"],
"targets": {
"e2e": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "apps/client-e2e/cypress.json",
"devServerTarget": "client:serve"
},
"configurations": {
"production": {
"devServerTarget": "client:serve:production"
}
}
}
}
}