creazy231 / strapi-plugin-apollo-sandbox

Integrate Apollo Sandbox for a powerful GraphQL Explorer in your Strapi Admin Interface
8 stars 8 forks source link

Uninstalling the plugin #5

Open yabasha opened 1 year ago

yabasha commented 1 year ago

When I uninstalled the plugin npm uninstall @creazy231/strapi-plugin-apollo-sandbox and removed the configurations then rebuild strapi, it stays on the right menu and gives me

image

Please advice,

creazy231 commented 1 year ago

did you run npm run build or yarn build after uninstalling the plugin?

yabasha commented 1 year ago

yes I did

akash-bilung commented 1 year ago

@yabasha Based on the documentation, it's recommended to execute npm run build && npm run develop. If the plugin build persists within the build directory, you have two options to address it:

  1. Clear the Build and Dependencies: Remove the build directory, node_modules, and package-lock.json by running:

    rm -rf node_modules package-lock.json build
    npm install
  2. Rebuild the Project: Simply run:

    npm run build

    This approach resolved the issue for me.