arbu Simple solution, hide it with custom CSS:
.compressor-container {
display: none;
}
More accurate method using the Javascript config. For example:
_c.config = {
// uppy uploader interface options
uppy: {
// https://uppy.io/docs/compressor/
Compressor: {
interface: true, // custom option to show interface
enabled: false, // custom option Compressor enabled
},
},
}