I wanted to create angular 9 application. What I did was
- Create a empty folder
- Install angular CLI version (npm i @angular/cli@9)
- in same path create application (ng new testApp)
inside new app still have angular version 15. How can I fix this
I wanted to create angular 9 application. What I did was
inside new app still have angular version 15. How can I fix this
Try these commands:
npm uninstall -g @angular/cli
npm cache clean --force
npm install -g @angular/cli@9