Hey guys Im on the hunt for page speed ;), and literally just the CLS (Columns Layout Shift) breaks my neck... I have a JSON file which holds all the content for my page and it gets loaded dynamically to my Components like: (easy example, in production the json is much bigger...)
import data from "./Model.json";
export default function Component (){
return <div>{data.text}</div>
}
Do you think in the first time my div is height 0 and after the content comes from the model.json the div is growing and thats the reason I got these CLS ?
Greeting and Thanks for any helps :heart: