1
I picked up a project I’m studying from a course. I installed the Node department with the command npm install
and it all worked out.
When initializing webPack with the command ng serve
shows this error:
Your global Angular CLI version (6.0.1) is Greater than your local version (1.5.0). The local Angular CLI version is used.
To disable this Warning use "ng config -g cli.warnings.versionMismatch false".
Does anyone know what to do in this case ?
Same situation as: https://stackoverflow.com/questions/44525746/global-angular-cli-version-greater-than-local-version
– Marconi
It seems to me that the error is caused by the local rather than global angular-cli installation. What the answer recommends to do is to install angular-cli globally,
npm install --save-dev @angular/cli@latest
execute this command on your finished and see if the error still continues.– Marconi
You still haven’t solved :(
– Dan100