Closed abelabbesnabi closed 6 months ago
Please simply try using package.json overrides field to solve this error.
{
"name": "your-project-name",
"version": "1.0.0",
"scripts": {
"start": "nx serve"
},
"dependencies": {
"nx": "latest"
},
"devDependencies": {
"nx-electron": "^19.0.2"
},
"overrides": {
"nx-electron": {
"@nx/workspace": "19.0.2"
}
}
}
I'll try. Thank you
Please simply try using package.json overrides field to solve this error.
{ "name": "your-project-name", "version": "1.0.0", "scripts": { "start": "nx serve" }, "dependencies": { "nx": "latest" }, "devDependencies": { "nx-electron": "^19.0.2" }, "overrides": { "nx-electron": { "@nx/workspace": "19.0.2" } } }
The reason that it does not work is the there is no nx-electron v19 yet