We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

Bundle splitting in Volto

Formale Metadaten

Titel
Bundle splitting in Volto
Serientitel
Anzahl der Teile
72
Autor
Mitwirkende
Lizenz
CC-Namensnennung 3.0 Deutschland:
Sie dürfen das Werk bzw. den Inhalt zu jedem legalen Zweck nutzen, verändern und in unveränderter oder veränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen, sofern Sie den Namen des Autors/Rechteinhabers in der von ihm festgelegten Weise nennen.
Identifikatoren
Herausgeber
Erscheinungsjahr
Sprache
Produktionsjahr2020

Inhaltliche Metadaten

Fachgebiet
Genre
Abstract
As an application scales, we need to make adjustments in Javascript bundle which gives a breathing space when it comes to loading massive client apps. We cannot maintain a single javascript bundle as the application grows, it can hinder website performance in various cases. A few different approaches we can take when it comes to bundle splitting JavaScript. Dynamic code splitting: Dynamic code splitting adds the ability to point out the fields/components which we want to lazy-load i.e load on demand and split out in a separate bundle. This is opposite to statically load where we bundle out dependencies into a single file during build time. This talk demonstrates how we recently inculcated and leveraged `loadable-components` into Volto core to load dynamic chunks while maintaining server side rendering.