Ionic 5 Food Ordering Template
  • Introduction
  • Ionic 5 Food Ordering App and PWA Template
  • Why to use this Template
  • Initial Setup
  • Running the app
  • Template features
    • Screens
      • Login, Signup, Forgot Password
      • Food Ordering Flow
      • Offers Pages
      • Address Pages
      • User Profile and Settings
      • Restaurant and Product Lists
      • Cart Page
      • Search Page
      • Filters
      • Chat
      • Order History
    • Features
      • Geolocation
      • Chat Support Page
      • Google Place Prediction
      • Social Sharing
      • Device Compatibility
  • how to use this template
    • Two ways to use
    • Modifying Code
    • Removing a Page
    • Removing a plugin
    • Integrating Back-end
    • Add More Features
  • how to build app and pwa
    • Building App on Device
    • Deploying app as PWA
  • Extra
    • Troubleshooting
    • FAQs
Powered by GitBook
On this page

Was this helpful?

  1. how to use this template

Removing a plugin

How to remove an unwanted plugin from the Template

Since the complete App Template is a huge project, you might not need all the plugins for all your requirements. Unnecessary plugins can cause issues with build, or at least cause the build to become heavy.‌

In most cases, you would want to remove a plugin from the project. Always remove a plugin using cordova CLI

$ ionic cordova plugin rm plugin-name

Sometimes user remove plugins by deleting the plugin folder from plugins folder, but the plugin is defined in config.xml as well as package.json . Removing the plugin using the CLI removes all trace of it.‌

Modifying dependencies of a plugin‌

If you are modifying dependencies of a plugin, it is preferable to do it in config.xml and/or package.json‌

Modifying plugin in plugins folder will not always work because on a new project setup, the plugin will again pick the dependencies from config.xml and/or package.json

PreviousRemoving a PageNextIntegrating Back-end

Last updated 5 years ago

Was this helpful?