<img loading="lazy"> only when it enters the visible area, speeding up the initial page renderimport() loads code only when needed, reducing the initial bundle sizeIn ORMs, lazy loading is convenient during development but dangerous in production: it is easy to miss how one property access turns into dozens of queries. Recommendation: in production code, always explicitly declare which relations are needed — through eager loading.