Capacitor how to remove platform

Viewed 12601

Documentation on capacitor doesn't mention how to remove a platform.

And remove does not exist.

enter image description here

Does capacitor even support removing of a platform? How do I remove my platform without the obvious - manually deleting the folder

1 Answers

Unlike Cordova, native projects in Capacitor are a source asset instead of a build time asset.

You will have to delete the whole project manually and re add it with npx cap add.

Related