Currently, I am in the process of setting up an nx workspace with Angular. Everything seems to be in order as I have installed nx globally. However, whenever I try to launch the nx dep-graph command, a window pops up asking how I would like to open it.
Even when I try to run the nx command alone, the same window appears. I am puzzled as to what could be causing this issue and why the graph is not automatically launching on port 4211.
Here is a snippet from the package.json file:
"name": "my-project2",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"private": true,
"dependencies": {
// dependencies listed here...
},
"devDependencies": {
// devDependencies listed here...
}
Here is an image of the issue: enter image description here