Closed eduardoformiga closed 6 days ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
This pull request is automatically built and testable in CodeSandbox.
To see build info of the built libraries, click here or the icon next to each commit SHA.
What's the purpose of this pull request?
This PR is part of the performance initiative and aims to split the global sections into its own file.
Let's initially separate the components of each page type into their own files; this will help organize the import of components by page type (in other tasks) and opens up the possibility of only importing customized components based on the page type in the future, instead of all components, as we currently do.
The idea is to stop using the
GlobalSections
component in the tree of each page, but since we are not doing this for all pages yet, we’ll keep it temporarily. We will only remove the use of this component on the homepage (in another task). Once we’ve done this for all pages, we can remove this component entirely, but we will keep the functiongetGlobalSectionsData
. (packages/core/src/components/cms/GlobalSections.tsx). Global sections will now be imported into the sections file of each page and passed directly toRenderSections
.Starters Deploy Preview
Preview https://sfj-923b60d--starter.preview.vtex.app/
References
POC PR