You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, fonts are embedded in the JavaScript file, and accounts for around 5% of scratch-gui bundle. Serving them as static files could reduce bundle size and allow fonts to be cached for more than a week (or whatever Scratch's deployment cycle is)
This requires asynchronous loading of fonts, but scratch-gui sort of does that already. Legacy Edge does not support FontFace.load but that is already the case with font-loader-hoc, so there should be no difference.
The text was updated successfully, but these errors were encountered:
Currently, fonts are embedded in the JavaScript file, and accounts for around 5% of scratch-gui bundle. Serving them as static files could reduce bundle size and allow fonts to be cached for more than a week (or whatever Scratch's deployment cycle is)
This requires asynchronous loading of fonts, but scratch-gui sort of does that already. Legacy Edge does not support
FontFace.load
but that is already the case withfont-loader-hoc
, so there should be no difference.The text was updated successfully, but these errors were encountered: