How to change the version of the cord in ionic?

0

I need to change the cord version of an ionic design I'm testing, is that possible? If so, how can I do this? I currently have this version:

But I would like to switch to version 7.0. Which npm command do I use?

    
asked by anonymous 19.04.2018 / 13:36

2 answers

0

npm install -g cordova

19.04.2018 / 14:46
0

To use an earlier version you can do so. If you are in the latest version of ionic:

ionic start myApp2 --v2

ionic start myApp3 --v3

So after installation you have the option to add the cordova corresponding to your installed version, even if you are in the latest version of Cordova

    
18.08.2018 / 17:31