Home > other >  Is the vuetify main.sass bundle file size of 30kb gzipped normal?
Is the vuetify main.sass bundle file size of 30kb gzipped normal?

Time:09-29

Title says it all basically:

Is the file size normal? Does it include all component stylings even if removed by treeshaking?

Treeshaking enabled.

Any advice is very much appreciated!

enter image description here

CodePudding user response:

Looking at this github issue, it looks perfectly normal to them.

I guess that not everything is tree-shakable, especially with CSS. It looks like you can disable some properties with something like this: https://github.com/vuetifyjs/vuetify/issues/12512#issuecomment-716729391

But yeah, mainly don't expect much from Vuetify if you want to have a smaller bundle size IMO.

  • Related