System Information
- Strapi Version: 4.0.5
- Operating System: Windows 11
- Database: Sqlite
- Node Version: v16.13.1
- NPM Version: 8.1.2
- Yarn Version: 1.22.17
Hey, I wanted to know how can I disable Strapi from adding ?width=xyz&height=abc
at the end of every URL uploaded to my custom provider.
I made a custom provider to upload files to Deta Drive. It doesn’t give the URL but instead gives the Buffer. So I tried to set the URL as data:${mimeType};base64, ${buffer.toString("base64")}
. And it didn’t load the image, I debugged and found out that it wasn’t working because it counted the query params as a part of Base64 encoded string.
So I just want to disable the width and height thing.