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 webpack packs all locale json into a same js file with other modules. Since it is a common module, every entry point will load this js. Having all locales in there bloats up this js file, thus increasing every page's js parsing time.
We should consider splitting up the locale json via webpack lazy import and lazyload it into the i18n module.
The text was updated successfully, but these errors were encountered:
Currently webpack packs all locale json into a same js file with other modules. Since it is a common module, every entry point will load this js. Having all locales in there bloats up this js file, thus increasing every page's js parsing time.
We should consider splitting up the locale json via webpack lazy import and lazyload it into the i18n module.
The text was updated successfully, but these errors were encountered: