Disable plugin (Compressor)

Is it possible to disable plugins that were initially enabled?

My specific case, is that I have enabled the Compressor plugin, but I want to disable it based on an option in the uploader interface. The problem with the Compressor plugin, when it’s enabled, there are no options that disable it from re-compressing all images … It needs to be explicitly removed to prevent it from attempting to compress all uploaded images.

Hi, you can uninstall any plugin at any time with uppy.removePlugin

Example:

uppy.removePlugin(uppy.getPlugin('Compressor'))
1 Like