Jak dodać leniwe ładowanie w HTML
lazy loading in html
<img src="myimage.jpg" loading="lazy" alt="..." />
<iframe src="content.html" loading="lazy"></iframe>
Colorful Crab
lazy loading in html
<img src="myimage.jpg" loading="lazy" alt="..." />
<iframe src="content.html" loading="lazy"></iframe>
<img src="..." loading="lazy">
const userDetail = await User.findOne({
where: {
email: "[email protected]"
},
});
const userAccount = await userDetail.getAccount();