Why is filament clone so large?
When I clone filament into my root directory, its 410MiB in size
But when I install filament with composer its only 8MiB?
Solution:Jump to solution
you can try
git clone the_repository_url --depth=1
, if you don't need the Git history, sometimes it's a bit smaller, but not always3 Replies
Git clone brings all the project history (all commits since the start of Filament). Composer install just grabs a .zip of the version you are trying to install.
Solution
you can try
git clone the_repository_url --depth=1
, if you don't need the Git history, sometimes it's a bit smaller, but not alwaysAh gotcha. Thanks!