Running Out of Laptop Storage Managing Multiple Node.js/Next.js Projects?
1 points| sanmak | 1 year ago
For node_modules: find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;
For Next.js .next folders: find . -name '.next' -type d -prune -print -exec rm -rf '{}' \;
No comments yet.