Your global Angular CLI version is greater than your local version




Asked on April 24, 2018
Hi, when start our Angular application using ng serve , I am getting following error.

Your global Angular CLI version is greater than your local version. The local Angular CLI version is used.

To disable this warning use "ng set --global warnings.versionMismatch=false".



Replied on April 24, 2018
You should uninstall and install Angular CLI again.

npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest

ng new my-app



Write Answer











©2024 concretepage.com | Privacy Policy | Contact Us