I am trying to run ng build in my project folder, but I get the following response:
ng build
bash: ng: command not found
Wha
If you have installed the dependencies locally and need to refer those packages instead of global. use npx before the the command eg: npx ng build refers to the locally installed package. ng build refers to the global package.
npx
npx ng build