I want to downgrade the Angular version of a specific project from 11 to 10.2.3 I have done the following:
npm uninstall @angular/cli
npm cache clean --force
npm install @angular/cli@10.2.3
This as I see affects only the CLI version and not the Angular version. All the info I found was about this. I can nowhere find how to change the Angular version itself! Any suggestions?