Answers for "how to remove all plugin in ionic"

1

how to remove a plugin from ionic project

cordova plugin remove 'nameOfPlugin'
Posted by: Guest on May-03-2020
1

how to uninstall all plugins in ionic app

// First, you should list your plugins:
cordova plugin list

// With this result, you can simply do:
cordova plugin remove <PLUGIN_NAME>

// For example:
cordova plugin remove org.apache.cordova.media

Hope it helps.
Posted by: Guest on November-20-2020

Code answers related to "how to remove all plugin in ionic"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language