Home > Blockchain >  what files/folders should I delete to reduce project size in order to share it
what files/folders should I delete to reduce project size in order to share it

Time:11-19

I have a Flutter project and as I noticed, it has a giant size, And I know that what cayuse is files/folders that can easily build and the files of packages.

as of now, I deleted the build folder and I want to know which other files should be deleted that I miss, And what files I shouldn't delete besides the lib folder.

CodePudding user response:

The command "flutter clean" should delete all unnecessary directories that are not needed for publishing. You can look it up for more information

  • Related