Hello community, In my config CMS, I have the following configurations
media_folder: “/src/images/uploads”
public_folder: “/images/uploads”
Then in my collections, I can do something like this (assuming I named my collection);
{ label: “Add Image”, name: “image”, widget: “image” }
{ label: “Upload a PDF”, name: “pdf”, widget: “file” }
The issue is, if the image and the file (pdf) are uploaded, they will both end in /src/images/uploads.
But I want the PDF to be uploaded to /src/assets/ebooks/ folder.
How do I go about this? Any help?