Hi, I’ve been trying to make a theme where it’s expected that the end-user uploads some assets (say, a hero video, custom js data, or images used for design elements like a background) into the site’s content directory (e.g. within a ‘content/images/custom’ directory). Is there a way to properly reference this from the theme for access that won’t encounter issues with caching?
I’ve already tried direct references (e.g. just pointing straight to things uploaded in the content directory before (e.g. ‘content/images/theme-related-user-image.jpg’), and noticed things going wrong where if the end-user asset gets updated the old one may still display due to caching.
Alternatively, is there a concept of having a site-specific assets folder that can be used alongside theme’s own assets folder / use the {{asset}} helper? I’ve tried reading through the documentation, seen some older references to things like an admin assets folder.