0
SageSpecialSolutions created
Hi Im geting a warning when building the Agular app Is there an issue with this when building to prod?
PS C:\SagenFuse - Copy\angular> ng build --prod
Your global Angular CLI version (9.0.2) is greater than your local
version (8.3.25). The local Angular CLI version is used.
To disable this warning use "ng config -g cli.warnings.versionMismatch false".
Thanks
2 Answer(s)
-
0
It means your angular project's version is
8.3.25
but your current angular-cli's version9.0.2
. It works as expected. To disable this warning you can do one of these:- use "ng config -g cli.warnings.versionMismatch false".
- update your project's angular version
- downgrade your angular cli version.
But it is just a warning, it works as expected.
-
0
Thanks