Disk space problems again

i have tried several times to make my project use less disk space and end up keep running out os disk space if somone could look at it and give me some tips on how to fix this that would be great


ps i have already tried adding several files to .gitignore and also ran git prune and git gc as well as $ rm -rf .git

Have you tried

cd ~ && du -hs $(ls -A)

and then finding the biggest allocated one and running:

cd ~ && rm -rf .npm

and adding the biggest allocating one’s name to the end (it’s ranked in bytes, M > K)
Example:

cd ~ && rm -rf .npm public

or

rm -rf node_modules
pnpm i

You could try to upload the images as assets, that they are not inside the project itself as assets do not count to the disk limit.