I have an Angular 13 and webpack project with about 350 megs of mp3 and mp4 files. I now have 6 directories in project-dir.angular\cache\angular-webpack each almost a gig in size. The directories date back a month.
I can easily delete the old versions, but my goal would be for ng serve to not add all of the mp3/mp4 files to the cache each time I serve the project, which would take 350 megs out of the total size. It's filling up my hard drive at work (it's an older ssd, so limited space) and there's no reason to keep a cache of these files.
Any information on controlling this cache? At the very least, it only needs to keep one version at a time, not half a dozen going back a month. I'm not sure if this is an angular setting or a webpack setting.
Thanks!