Sanguine Users of freeflarum have accumulated over a GB of lesscache files. Would it be safe to purge these files once the asset generation is completed? I.e. lesscache files over 5 minutes old ? Stracing PHP shows that no lesscache files are accessed during normal requests but I'd be rather safe than sorry ?
Sanguine For anyone else with a growing less cache, you can add this to your crontab to remove cache files older than 1 day: find /flarum/root -path '*/storage/less/*.lesscache' -type f -mtime +1 -delete