[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"contentNavigation":3,"newsletter-stats":4,"$fQa3xUpnRDPNiFFu2QS4K-DAjYmsapeR9fNhPNBdpkOc":-1,"news-article-improve-performance-by-loading-videos-only-when-theyre-needed":6},[],{"confirmedCount":5},405,{"article":7,"engagement":1406,"relatedArticles":1409,"tags":1434},{"content":8,"createdAt":9,"embedding":10,"id":1392,"image":1393,"isAffiliate":1394,"isPublished":1394,"publishedAt":1395,"slug":1396,"sourceId":1397,"sourceName":1398,"sourceSlug":1399,"sourceType":1400,"sourceUrl":1401,"summary":1402,"title":1403,"updatedAt":1404,"url":1405},"Videos are one of the heaviest assets you can add to a web page. Loading videos too early can significantly impact your application's performance. The good news is that modern browsers are starting to support lazy loading for video elements, allowing you to defer loading until users are likely to watch them. However, there's one important thing to know: 👉 This feature is not yet part of the Baseline web platform, so browser support is still limited. At the time of writing, lazy loading for &lt;video&gt; elements is supported in Chromium-based browsers such as Google Chrome, Microsoft Edge, and Opera, while browsers like Firefox and Safari do not yet support it natively. In this article, we'll explore: What lazy loading videos is Why it's important for web performance How to implement it Browser support considerations Best practices for optimizing video loading Let's dive in. 🤔 What Is Lazy Loading for Videos? Lazy loading means delaying the loading of a resource until it's actually needed. Instead of downloading every video immediately during page load, the browser waits until the video is close to entering the viewport. This helps reduce: initial network requests bandwidth usage page load time memory consumption Especially on pages with multiple videos, the difference can be significant. 🟢 What Problem Does It Solve? Imagine an e-commerce page with several product videos. Without lazy loading: every video starts downloading immediately bandwidth is consumed even for videos users never watch page rendering may become slower This negatively impacts; Largest Contentful Paint (LCP), Time to Interactive (TTI), and overall user experience. Most visitors won't watch every video on the page. So why load them all? Lazy loading ensures videos are fetched only when they're actually needed. 🟢 How to Lazy Load a Video The easiest approach is using the loading=\"lazy\" attribute. Example: &lt;video controls loading=\"lazy\" poster=\"\u002Fpreview.jpg\" &gt; &lt;source src=\"\u002Fvideo.mp4\" type=\"video\u002Fmp4\" \u002F&gt; &lt;\u002Fvideo&gt; Now the browser can defer loading the video until it's approaches the viewport. Combined with a poster image, users still see a nice preview before playback begins. 🟢 Why Use a Poster Image? A poster acts as a placeholder while the video hasn't loaded yet. Example: &lt;video controls loading=\"lazy\" poster=\"\u002Fthumbnail.jpg\" &gt; &lt;source src=\"\u002Fdemo.mp4\" type=\"video\u002Fmp4\" \u002F&gt; &lt;\u002Fvideo&gt; Benefits: faster visual rendering improved perceived performance lower initial network usage Users immediately understand there's a video without downloading the entire file. 🟢 Loading Videos Only After User Interaction For videos below the fold, you can optimize even further. Instead of immediately defining the video source: &lt;video controls poster=\"\u002Fthumbnail.jpg\"&gt; &lt;\u002Fvideo&gt; You can dynamically add the &lt;source&gt; element after: the user clicks Play the video becomes visible an Intersection Observer fires This gives you complete control over when large video files start downloading. It's a great fallback for browsers that don't yet support native lazy loading. 🟢 Browser Support Since native video lazy loading isn't yet Baseline, it's important to understand browser compatibility. Currently, native support is available in: ✅ Google Chrome ✅ Microsoft Edge ✅ Opera ✅ Other Chromium-based browsers Support is currently unavailable in: ❌ Firefox ❌ Safari For maximum compatibility, consider progressive enhancement. Browsers that support the feature benefit automatically, while older browsers still function correctly. 🧪 Best Practices Lazy load videos whenever they aren't immediately visible Always provide a lightweight poster image Compress videos before publishing Use modern video formats when possible Consider Intersection Observer for unsupported browsers Test browser compatibility before relying on native lazy loading Measure improvements using Lighthouse and Core Web Vitals 📖 Learn more If you would like to learn more about Vue, Nuxt, JavaScript or other useful technologies, checkout VueSchool by clicking this link or by clicking the image below: It covers most important concepts while building modern Vue or Nuxt applications that can help you in your daily work or side projects 😉 🧪 Advance skills A certification boosts your skills, builds credibility, and opens doors to new opportunities. Whether you're advancing your career or switching paths, it's a smart step toward success. Check out Certificates.dev by clicking this link or by clicking the image below: Invest in yourself—get certified in Vue.js, JavaScript, Nuxt, Angular, React, and more! ✅ Summary Lazy loading videos is an effective way to improve performance by reducing unnecessary network requests and delaying large downloads until they're actually needed. Although native support isn't yet available across all browsers, it's already a valuable progressive enhancement for Chromium-based browsers. Combined with poster images and fallback techniques like Intersection Observer, it can significantly improve the loading experience of media-rich web applications. Take care! And happy coding as always 🖥️","2026-07-13T08:00:05.597Z",[11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,112,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,119,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,84,188,189,190,191,192,31,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,207,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,57,311,312,313,314,315,316,317,318,319,320,321,322,323,177,324,325,326,327,328,329,330,331,332,333,334,335,316,336,337,338,339,340,341,342,319,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,279,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,413,432,433,434,435,436,437,438,423,439,440,441,442,443,444,445,446,447,448,449,450,371,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,400,475,476,477,478,479,480,481,402,482,483,484,112,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,205,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,148,524,525,526,527,528,529,530,531,532,533,534,243,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,513,555,556,557,558,333,559,560,561,562,563,289,564,565,566,567,568,569,570,571,572,573,574,575,576,577,11,578,579,580,567,581,582,178,583,105,584,585,586,587,588,589,590,591,572,512,592,429,593,594,595,596,597,598,101,599,600,601,602,603,604,605,606,607,608,609,486,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,218,633,634,635,636,637,638,639,640,641,642,643,644,645,578,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,341,669,670,671,672,673,674,589,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,389,702,358,703,704,617,705,706,288,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,571,753,84,754,617,755,756,757,758,759,760,761,257,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,425,782,783,784,785,786,232,787,788,789,790,510,791,792,793,794,795,796,797,798,799,800,801,242,802,803,804,805,806,506,807,808,809,810,811,812,670,813,814,457,815,679,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,635,882,803,883,884,885,886,887,888,889,589,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,709,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,65,949,950,556,951,952,454,953,954,156,955,292,956,660,957,958,959,533,960,511,961,962,963,964,965,778,966,967,968,969,970,971,972,973,731,974,975,976,977,978,358,471,979,980,981,273,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,654,1001,1002,1003,1004,1005,1006,484,1007,963,1008,1009,1010,1011,29,803,1012,1013,768,288,1014,1015,1016,206,1017,1018,233,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,592,1040,1041,1042,1043,1044,1045,889,400,1046,1047,805,1048,166,1049,1050,1051,1052,1053,1054,1055,1056,1057,756,1058,1059,533,520,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,971,1081,881,1082,334,1083,1084,1085,855,472,1086,1087,336,1088,1089,1090,1091,1092,401,1093,1094,867,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,725,1109,832,1110,1111,1112,197,1113,1114,1115,705,1116,1117,1118,1119,1120,1121,1122,1123,1124,344,1125,19,1126,625,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,197,1137,1138,1117,1139,1140,1141,1142,1143,1144,870,1145,153,1146,669,1147,334,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1017,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1095,1176,1177,563,1178,1179,1180,1181,1182,457,1183,1184,1185,751,1186,1187,1188,1189,1190,1191,733,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,651,1204,1205,1206,588,1207,659,1208,1209,1090,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,538,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,85,90,1246,1247,1248,1249,1023,1250,1251,427,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1215,465,1262,1263,1264,1265,1266,1267,1268,794,771,1269,373,568,1270,636,1271,1272,1273,1274,679,466,322,1275,1276,1277,1278,1279,1280,1281,1222,1282,1283,91,1284,1285,887,1286,1287,1288,82,1289,1290,1291,1292,1021,1293,1294,1295,1296,1297,283,1298,1299,1300,1301,1302,1303,588,1304,782,1305,587,774,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,145,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,598,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,773,1337,1338,1339,1340,1341,1161,1342,1343,1344,1345,293,1346,131,345,1347,1348,1349,1350,286,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1083,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,546,1382,1383,832,700,756,1384,1385,1386,1387,840,1388,1389,1390,1391],0.0204925537109375,0.0270233154296875,-0.0035877227783203125,-0.01396942138671875,0.04473876953125,0.0126495361328125,-0.023162841796875,-0.04022216796875,0.03497314453125,0.055877685546875,0.063720703125,-0.0047454833984375,-0.03302001953125,-0.01445770263671875,-0.00262451171875,0.00254058837890625,0.01335906982421875,-0.0361328125,0.059326171875,-0.006877899169921875,0.035552978515625,0.005496978759765625,-0.02056884765625,0.0051727294921875,0.03204345703125,-0.037353515625,0.04144287109375,0.06573486328125,0.010345458984375,-0.06976318359375,0.00039267539978027344,-0.02642822265625,-0.010833740234375,-0.0191802978515625,-0.030853271484375,-0.0154571533203125,0.040130615234375,-0.021026611328125,-0.008087158203125,0.00197601318359375,-0.02923583984375,-0.0232391357421875,-0.0201568603515625,0.003398895263671875,0.06689453125,0.04583740234375,0.0285797119140625,-0.00018715858459472656,-0.01450347900390625,0.0667724609375,-0.0276641845703125,-0.000560760498046875,-0.036407470703125,0.05804443359375,0.0059967041015625,0.0286712646484375,-0.006824493408203125,0.002124786376953125,-0.051239013671875,0.0095672607421875,0.033233642578125,-0.00916290283203125,-0.0106048583984375,-0.000009953975677490234,-0.020599365234375,-0.01348876953125,-0.03619384765625,-0.012786865234375,-0.003444671630859375,0.03070068359375,0.0123138427734375,-0.035125732421875,0.06329345703125,0.004058837890625,-0.02996826171875,0.031341552734375,0.02301025390625,0.01044464111328125,0.056640625,0.02252197265625,0.0135650634765625,0.034454345703125,-0.0204925537109375,-0.01401519775390625,-0.039337158203125,0.0107574462890625,-0.0010290145874023438,0.041290283203125,-0.00879669189453125,0.037109375,-0.0033779144287109375,-0.0022754669189453125,-0.060150146484375,0.042266845703125,-0.0266571044921875,0.0577392578125,0.01345062255859375,0.0225067138671875,0.049163818359375,0.060028076171875,0.0212249755859375,-0.026611328125,-0.01041412353515625,0.0005660057067871094,0.0222930908203125,-0.038116455078125,0.004550933837890625,0.0162200927734375,-0.0185546875,-0.0193634033203125,-0.04241943359375,0.0025615692138671875,0.057098388671875,0.00521087646484375,-0.0206298828125,-0.01560211181640625,0.0186920166015625,-0.00008958578109741211,-0.031219482421875,-0.029754638671875,0.0345458984375,-0.00809478759765625,-0.0391845703125,0.011810302734375,-0.032745361328125,0.031829833984375,-0.00876617431640625,0.005634307861328125,-0.0487060546875,0.036163330078125,0.039031982421875,0.0833740234375,-0.047882080078125,-0.0574951171875,-0.004444122314453125,0.0276031494140625,0.00717926025390625,-0.01149749755859375,0.0621337890625,0.0110931396484375,-0.03631591796875,0.041778564453125,0.022003173828125,-0.0195465087890625,0.01084136962890625,0.03131103515625,0.006561279296875,-0.015655517578125,-0.038482666015625,-0.002559661865234375,-0.016143798828125,-0.00318145751953125,-0.04150390625,-0.0292205810546875,-0.005977630615234375,-0.034759521484375,-0.001918792724609375,-0.00988006591796875,-0.0560302734375,-0.026947021484375,0.027069091796875,0.0003101825714111328,0.0243988037109375,0.0223236083984375,0.0174102783203125,-0.0237274169921875,-0.0297088623046875,-0.0141143798828125,0.00974273681640625,-0.0026111602783203125,0.01450347900390625,-0.014404296875,0.0195465087890625,-0.01074981689453125,-0.02569580078125,-0.042938232421875,0.071533203125,0.00457000732421875,0.05120849609375,-0.0238189697265625,0.00157928466796875,-0.0880126953125,-0.034332275390625,0.02923583984375,-0.0273895263671875,0.047607421875,-0.01543426513671875,0.032867431640625,-0.02117919921875,0.03173828125,0.0025005340576171875,0.037689208984375,-0.01554107666015625,0.02801513671875,0.0100555419921875,-0.00778961181640625,0.0117034912109375,0.0220794677734375,0.044281005859375,-0.0142669677734375,-0.00969696044921875,-0.00965118408203125,-0.0267333984375,0.01560211181640625,0.0218658447265625,0.02197265625,0.00887298583984375,0.034912109375,0.0211029052734375,0.0109100341796875,-0.00977325439453125,-0.0114593505859375,0.0094757080078125,0.031402587890625,-0.009368896484375,-0.0204315185546875,0.005641937255859375,-0.01018524169921875,0.004093170166015625,-0.0069427490234375,-0.0134124755859375,-0.0283203125,-0.0033130645751953125,0.007015228271484375,-0.012176513671875,0.0584716796875,0.0009279251098632812,0.00922393798828125,0.01181793212890625,0.087158203125,-0.0022068023681640625,-0.039276123046875,0.0025043487548828125,-0.0239410400390625,-0.0236663818359375,0.0296630859375,-0.0166168212890625,-0.0821533203125,0.00376129150390625,-0.0107269287109375,0.0166473388671875,-0.060760498046875,-0.04833984375,-0.025054931640625,0.0016489028930664062,0.0018339157104492188,-0.0389404296875,-0.011016845703125,-0.03546142578125,-0.016754150390625,-0.02862548828125,0.0122528076171875,0.04571533203125,-0.01506805419921875,0.049591064453125,-0.020263671875,-0.0007071495056152344,0.046844482421875,-0.013580322265625,-0.039520263671875,0.0269317626953125,0.012542724609375,-0.01641845703125,0.0341796875,0.0298309326171875,0.06683349609375,-0.0093536376953125,0.01153564453125,0.01030731201171875,-0.01386260986328125,0.051116943359375,0.0179290771484375,-0.00267791748046875,-0.028289794921875,0.02215576171875,-0.046234130859375,-0.0416259765625,-0.0345458984375,0.019500732421875,-0.0177459716796875,-0.045135498046875,-0.0225677490234375,0.009765625,0.013153076171875,-0.0231781005859375,-0.040008544921875,-0.002536773681640625,-0.004451751708984375,-0.01953125,0.024200439453125,0.062042236328125,-0.0256500244140625,-0.034423828125,0.0092010498046875,0.01285552978515625,-0.04266357421875,0.0218505859375,0.01165771484375,0.01763916015625,0.0255126953125,-0.00901031494140625,-0.0183868408203125,-0.0267791748046875,0.0209197998046875,-0.016845703125,0.0316162109375,-0.0174560546875,0.01453399658203125,-0.07098388671875,0.00565338134765625,0.03399658203125,-0.026123046875,0.010589599609375,0.01087188720703125,-0.003604888916015625,-0.047393798828125,0.00989532470703125,0.013519287109375,-0.032379150390625,-0.0015735626220703125,-0.0223236083984375,-0.00850677490234375,-0.0185394287109375,0.0136260986328125,0.0152435302734375,-0.0289306640625,0.0031414031982421875,-0.0290679931640625,-0.032928466796875,-0.025604248046875,-0.016387939453125,0.04150390625,-0.009429931640625,0.0285491943359375,0.017120361328125,0.019195556640625,0.0057373046875,-0.030487060546875,0.017547607421875,-0.005168914794921875,0.0191192626953125,0.025177001953125,-0.04180908203125,0.033294677734375,-0.037811279296875,0.0223846435546875,0.006328582763671875,0.0128326416015625,-0.06280517578125,-0.05682373046875,-0.0158538818359375,-0.003566741943359375,-0.00949859619140625,0.055206298828125,-0.021820068359375,0.061798095703125,0.04034423828125,0.035186767578125,0.05889892578125,0.03643798828125,0.03082275390625,0.045562744140625,0.0443115234375,-0.034088134765625,-0.0477294921875,0.0029468536376953125,0.006198883056640625,0.04949951171875,0.0214385986328125,0.0450439453125,0.010223388671875,0.01241302490234375,0.048065185546875,-0.05706787109375,0.0086669921875,-0.0080718994140625,-0.01184844970703125,-0.0171966552734375,-0.036376953125,0.026947021484375,-0.01036834716796875,-0.0259246826171875,-0.04400634765625,-0.052520751953125,0.048492431640625,0.03564453125,-0.00742340087890625,0.01119232177734375,0.0188751220703125,-0.033294677734375,0.03619384765625,0.054840087890625,-0.058807373046875,0.0166168212890625,-0.00399017333984375,-0.06658935546875,-0.0012798309326171875,-0.0323486328125,0.033172607421875,-0.025665283203125,0.034515380859375,0.0177764892578125,0.0289306640625,0.033203125,0.0036373138427734375,0.005550384521484375,0.0416259765625,-0.0026645660400390625,0.01849365234375,0.09124755859375,0.0323486328125,-0.00016033649444580078,-0.0229949951171875,0.01194000244140625,-0.03277587890625,0.0178985595703125,0.018951416015625,0.00321197509765625,0.0167999267578125,-0.05938720703125,-0.0721435546875,0.029541015625,0.0116729736328125,-0.037506103515625,-0.0304412841796875,0.006076812744140625,0.017974853515625,0.028961181640625,-0.046905517578125,-0.0189056396484375,-0.06451416015625,0.0206756591796875,-0.0194854736328125,-0.0011005401611328125,-0.051025390625,0.059417724609375,-0.036773681640625,-0.0283966064453125,-0.007244110107421875,0.009246826171875,0.01806640625,0.00830078125,-0.0039825439453125,-0.004199981689453125,-0.04901123046875,0.02862548828125,-0.02581787109375,-0.04522705078125,0.0269012451171875,-0.014068603515625,-0.005458831787109375,0.0293121337890625,0.0287933349609375,0.045135498046875,0.032379150390625,0.026397705078125,-0.034698486328125,0.0221405029296875,0.008148193359375,0.0179595947265625,0.0254058837890625,0.0214996337890625,0.0214691162109375,0.0124359130859375,-0.051544189453125,-0.0119171142578125,-0.01380157470703125,-0.034881591796875,-0.0248260498046875,-0.029449462890625,0.001392364501953125,0.05352783203125,-0.043243408203125,0.0244903564453125,-0.014678955078125,-0.020660400390625,0.0899658203125,-0.0107421875,-0.037139892578125,-0.0154266357421875,-0.0806884765625,-0.008819580078125,0.06854248046875,0.046875,0.0010280609130859375,-0.020477294921875,-0.039703369140625,-0.0009775161743164062,-0.0177001953125,-0.0293426513671875,-0.006252288818359375,-0.01000213623046875,0.0222015380859375,0.03778076171875,-0.009613037109375,0.01422119140625,0.02655029296875,-0.03521728515625,0.024139404296875,-0.0128326416015625,0.02069091796875,0.00948333740234375,0.005336761474609375,-0.017547607421875,0.0300140380859375,0.01213836669921875,-0.0140533447265625,0.015411376953125,0.004917144775390625,-0.04547119140625,-0.01235198974609375,-0.0192718505859375,-0.0215301513671875,-0.046783447265625,0.005290985107421875,-0.0157928466796875,-0.0227203369140625,-0.015411376953125,0.00225830078125,-0.03668212890625,-0.027130126953125,0.005725860595703125,0.01361846923828125,0.004337310791015625,0.01197052001953125,-0.003787994384765625,0.0124664306640625,0.020263671875,-0.027496337890625,-0.034942626953125,-0.0307769775390625,-0.00661468505859375,-0.0616455078125,0.00011855363845825195,-0.021209716796875,-0.0233306884765625,-0.0111846923828125,-0.00154876708984375,-0.0281829833984375,-0.019378662109375,-0.0218505859375,0.02227783203125,0.004726409912109375,0.019622802734375,-0.0015096664428710938,0.0123748779296875,0.0091400146484375,-0.05450439453125,0.035430908203125,-0.0208892822265625,0.016204833984375,0.006992340087890625,-0.02178955078125,0.00826263427734375,-0.003448486328125,0.0026836395263671875,0.00926971435546875,0.032989501953125,-0.004119873046875,-0.00008100271224975586,-0.033599853515625,0.00524139404296875,-0.03033447265625,-0.0013875961303710938,-0.00844573974609375,-0.0192413330078125,0.0247039794921875,0.0273895263671875,-0.0257110595703125,-0.01139068603515625,-0.01806640625,-0.0004189014434814453,0.00673675537109375,-0.01110076904296875,0.007335662841796875,-0.0311737060546875,0.0198516845703125,0.0159759521484375,0.00576019287109375,-0.005809783935546875,-0.014007568359375,-0.0322265625,-0.006412506103515625,-0.01422882080078125,-0.050201416015625,-0.0221099853515625,-0.0479736328125,-0.0211639404296875,0.0155792236328125,-0.006092071533203125,0.018768310546875,0.005535125732421875,0.0035190582275390625,0.0115203857421875,0.0169219970703125,-0.0095062255859375,-0.0316162109375,-0.00955963134765625,-0.0227813720703125,-0.0039005279541015625,0.0255584716796875,0.004825592041015625,0.0018138885498046875,-0.033935546875,-0.040802001953125,0.0111846923828125,0.01424407958984375,-0.017578125,-0.01416015625,0.01325225830078125,0.007476806640625,0.017730712890625,-0.01116180419921875,0.037078857421875,-0.0254058837890625,0.003692626953125,0.01383209228515625,0.0025577545166015625,-0.016265869140625,-0.02496337890625,-0.0045318603515625,0.0287017822265625,0.0027980804443359375,0.00745391845703125,-0.03363037109375,-0.00861358642578125,0.029052734375,0.0247802734375,-0.03253173828125,-0.0207061767578125,-0.02960205078125,-0.0212554931640625,-0.00274658203125,0.0072021484375,0.041839599609375,-0.0184478759765625,-0.034515380859375,-0.0406494140625,0.036102294921875,0.0118865966796875,0.01099395751953125,-0.0198822021484375,-0.08209228515625,0.01259613037109375,-0.01464080810546875,-0.0036220550537109375,0.042449951171875,-0.0228271484375,0.038543701171875,-0.0175018310546875,-0.0279693603515625,0.020599365234375,-0.035491943359375,-0.01056671142578125,0.051971435546875,0.0200347900390625,-0.01593017578125,0.003841400146484375,0.019378662109375,-0.005931854248046875,-0.0162353515625,0.0570068359375,0.0016431808471679688,-0.032196044921875,-0.01224517822265625,0.0081024169921875,0.04730224609375,0.0228271484375,0.02557373046875,0.01219940185546875,-0.0300750732421875,-0.01467132568359375,-0.00757598876953125,0.01444244384765625,-0.0006284713745117188,-0.00292205810546875,0.0045166015625,-0.00522613525390625,-0.02886962890625,-0.0019207000732421875,-0.031829833984375,-0.01325225830078125,-0.007511138916015625,0.01497650146484375,0.0139617919921875,-0.0081939697265625,0.00614166259765625,-0.041748046875,0.0006232261657714844,0.03192138671875,0.0134735107421875,0.042205810546875,0.06341552734375,0.01433563232421875,0.0226287841796875,0.0173492431640625,-0.0023975372314453125,-0.043060302734375,-0.0272369384765625,-0.0028018951416015625,-0.035400390625,-0.051971435546875,-0.005970001220703125,0.059661865234375,0.0143585205078125,0.048919677734375,0.016326904296875,-0.00506591796875,0.0198211669921875,0.0108795166015625,-0.00200653076171875,-0.002330780029296875,0.00788116455078125,0.0106353759765625,0.0279388427734375,-0.012542724609375,-0.0413818359375,0.04547119140625,0.00997161865234375,0.024505615234375,-0.00870513916015625,0.0037784576416015625,0.0198974609375,-0.0215911865234375,0.0135345458984375,-0.00875091552734375,0.006855010986328125,-0.03216552734375,0.0010728836059570312,0.01149749755859375,-0.00408935546875,-0.0186920166015625,-0.00579833984375,0.039886474609375,-0.012908935546875,0.021942138671875,0.0094146728515625,-0.004817962646484375,0.04412841796875,0.014312744140625,0.035064697265625,-0.0308990478515625,-0.0062408447265625,0.00453948974609375,0.008209228515625,0.01558685302734375,-0.00962066650390625,-0.0172576904296875,-0.03509521484375,-0.042999267578125,0.0330810546875,-0.01114654541015625,-0.0196533203125,0.0231475830078125,-0.048492431640625,-0.0159454345703125,0.0106048583984375,-0.00890350341796875,-0.01067352294921875,0.01186370849609375,0.022216796875,-0.0283355712890625,0.027557373046875,-0.03424072265625,-0.003986358642578125,0.0010786056518554688,0.0059051513671875,-0.029266357421875,0.0006442070007324219,-0.0048675537109375,0.005405426025390625,0.040496826171875,-0.0070037841796875,-0.0141448974609375,-0.006282806396484375,-0.0640869140625,0.047149658203125,-0.0240478515625,0.0229339599609375,-0.023895263671875,-0.032501220703125,0.0213165283203125,-0.0031642913818359375,0.0031261444091796875,0.004451751708984375,0.00022363662719726562,0.035797119140625,0.003459930419921875,-0.0097503662109375,0.037750244140625,0.0031757354736328125,-0.0033855438232421875,0.0115509033203125,-0.0133819580078125,0.00688934326171875,-0.005474090576171875,0.005802154541015625,-0.0182952880859375,-0.0109710693359375,0.0010662078857421875,-0.0189208984375,-0.0208282470703125,-0.0198516845703125,-0.01076507568359375,0.03033447265625,-0.034149169921875,-0.0183258056640625,-0.007541656494140625,-0.0025234222412109375,-0.039581298828125,0.019287109375,0.020721435546875,0.0041961669921875,0.034271240234375,0.01953125,-0.027587890625,0.0013818740844726562,0.01593017578125,0.0013189315795898438,0.037811279296875,0.062408447265625,0.016632080078125,0.0021686553955078125,0.0029659271240234375,-0.0246124267578125,0.0078277587890625,0.014892578125,-0.0140380859375,0.0311126708984375,0.01270294189453125,0.020843505859375,-0.0199737548828125,0.00034546852111816406,0.0106964111328125,-0.019927978515625,-0.0180206298828125,0.02423095703125,0.0164337158203125,-0.0005669593811035156,0.0168609619140625,-0.00490570068359375,0.004596710205078125,0.034881591796875,0.0191650390625,0.0034160614013671875,-0.004917144775390625,0.06524658203125,-0.024322509765625,0.021209716796875,-0.04156494140625,0.0148773193359375,-0.030731201171875,0.0237274169921875,-0.0103759765625,0.0162353515625,-0.007778167724609375,0.0249176025390625,-0.00804901123046875,-0.0074920654296875,0.0239105224609375,-0.018218994140625,0.00514984130859375,0.006099700927734375,0.039947509765625,0.01314544677734375,0.00054168701171875,0.0220947265625,0.0207366943359375,-0.033905029296875,-0.01136016845703125,-0.03460693359375,0.0212860107421875,0.01503753662109375,0.015167236328125,0.00754547119140625,0.07666015625,-0.003143310546875,-0.00016689300537109375,0.017486572265625,-0.01549530029296875,0.02777099609375,-0.0232696533203125,-0.005245208740234375,0.0159912109375,0.0013227462768554688,-0.00005269050598144531,0.00885772705078125,0.0178680419921875,0.041595458984375,0.01470184326171875,0.00043964385986328125,0.0209503173828125,0.0105743408203125,0.00836181640625,-0.04742431640625,-0.0014629364013671875,0.022613525390625,-0.002185821533203125,0.004817962646484375,-0.0057220458984375,0.024017333984375,0.042144775390625,0.0189971923828125,0.0291900634765625,0.004669189453125,0.0028362274169921875,0.00046324729919433594,0.045501708984375,-0.003421783447265625,-0.00994873046875,-0.0303955078125,-0.0169525146484375,0.01280975341796875,0.0238800048828125,0.0155181884765625,0.048370361328125,-0.002979278564453125,0.0269927978515625,-0.00455474853515625,0.0208740234375,-0.01491546630859375,0.01371002197265625,-0.018310546875,0.00923919677734375,-0.0235595703125,0.0382080078125,0.009918212890625,0.00019037723541259766,-0.0014524459838867188,0.0240325927734375,0.01230621337890625,0.0009021759033203125,-0.01495361328125,0.0152130126953125,0.0074005126953125,-0.0134735107421875,-0.028961181640625,0.007190704345703125,-0.022705078125,0.0213470458984375,-0.023040771484375,0.009124755859375,0.0192718505859375,0.0028667449951171875,0.019073486328125,-0.026092529296875,0.00910186767578125,0.0111541748046875,-0.06182861328125,-0.0274505615234375,-0.0204620361328125,0.0025653839111328125,-0.0245361328125,-0.044921875,0.001361846923828125,-0.0020084381103515625,-0.00559234619140625,-0.0118865966796875,-0.0221405029296875,0.013214111328125,-0.01947021484375,0.0125274658203125,0.020477294921875,0.036590576171875,0.019317626953125,-0.0015544891357421875,-0.023773193359375,-0.02630615234375,0.0175018310546875,-0.018798828125,-0.0009083747863769531,0.01910400390625,-0.01141357421875,-0.00576019287109375,-0.01922607421875,-0.004352569580078125,-0.0276031494140625,0.009033203125,-0.002655029296875,0.015869140625,0.0352783203125,0.00255584716796875,-0.00589752197265625,-0.01146697998046875,-0.035064697265625,0.033966064453125,0.01506805419921875,0.013885498046875,0.0135955810546875,0.00949859619140625,0.005260467529296875,-0.047332763671875,0.0036525726318359375,0.0056915283203125,-0.0190582275390625,-0.0028057098388671875,0.01454925537109375,0.0236663818359375,0.02630615234375,0.0280303955078125,-0.0244140625,-0.005779266357421875,0.03515625,-0.0294342041015625,0.007747650146484375,-0.0026454925537109375,-0.0222625732421875,-0.018157958984375,0.04254150390625,0.0191497802734375,0.0177459716796875,0.0014858245849609375,0.036651611328125,-0.01293182373046875,-0.0166015625,-0.02484130859375,-0.0137786865234375,-0.017333984375,0.0307769775390625,0.0002435445785522461,-0.0313720703125,0.039703369140625,-0.0012540817260742188,0.01123046875,0.0266876220703125,-0.006336212158203125,-0.00872802734375,0.01163482666015625,-0.0157623291015625,0.022552490234375,0.002056121826171875,0.0172271728515625,0.0010118484497070312,-0.01340484619140625,0.025665283203125,-0.004932403564453125,-0.0053863525390625,-0.00782012939453125,0.0008330345153808594,-0.00652313232421875,-0.03350830078125,-0.032257080078125,0.00511932373046875,-0.0011501312255859375,0.0261383056640625,-0.00244903564453125,0.01458740234375,0.0012531280517578125,-0.0228424072265625,0.007350921630859375,0.0022563934326171875,0.0121002197265625,-0.005138397216796875,0.03363037109375,0.007045745849609375,0.006694793701171875,-0.0296173095703125,0.0077362060546875,-0.0005173683166503906,-0.01178741455078125,-0.01177215576171875,-0.00998687744140625,0.046295166015625,-0.021728515625,0.033538818359375,-0.0274200439453125,0.0193023681640625,-0.0078887939453125,0.0009050369262695312,-0.025482177734375,-0.01418304443359375,0.01390838623046875,0.002414703369140625,-0.014373779296875,-0.01277923583984375,-0.00930023193359375,-0.006992340087890625,-0.007648468017578125,0.0106658935546875,0.0318603515625,-0.00872039794921875,0.0019683837890625,-0.0074005126953125,-0.025299072265625,0.020782470703125,-0.01233673095703125,-0.01303863525390625,0.0006570816040039062,-0.01453399658203125,0.01218414306640625,-0.024566650390625,-0.0026912689208984375,0.00024306774139404297,0.0037994384765625,0.023406982421875,0.003509521484375,-0.0400390625,0.0157623291015625,-0.00739288330078125,0.02618408203125,0.00426483154296875,-0.000934600830078125,0.04193115234375,-0.01270294189453125,-0.0024471282958984375,-0.00443267822265625,-0.0181732177734375,0.0150909423828125,-0.0196990966796875,-0.0011310577392578125,-0.009307861328125,0.004032135009765625,-0.03802490234375,-0.006664276123046875,0.003383636474609375,0.004634857177734375,-0.02471923828125,-0.00015854835510253906,0.0079498291015625,0.00894927978515625,0.0019025802612304688,-0.0209503173828125,0.01336669921875,-0.0165252685546875,0.01036834716796875,-0.0159149169921875,-0.027679443359375,-0.041595458984375,-0.0027408599853515625,-0.00469970703125,0.054412841796875,-0.0035686492919921875,0.007587432861328125,0.012725830078125,-0.044677734375,0.06646728515625,0.0284576416015625,-0.0081634521484375,-0.028839111328125,-0.0282440185546875,-0.009918212890625,-0.01012420654296875,-0.01142120361328125,0.00762939453125,-0.019561767578125,-0.010345458984375,0.0280609130859375,-0.049346923828125,-0.0289154052734375,-0.037078857421875,-0.017059326171875,0.005558013916015625,0.0014705657958984375,-0.0113372802734375,-0.0075836181640625,0.01512908935546875,0.0011587142944335938,0.018524169921875,0.0159149169921875,-0.033416748046875,0.0197296142578125,0.004253387451171875,-0.01338958740234375,0.006565093994140625,-0.0051422119140625,0.0077056884765625,-0.00395965576171875,-0.0287017822265625,0.00934600830078125,-0.0195770263671875,0.002166748046875,0.01459503173828125,-0.01354217529296875,0.0175933837890625,-0.006511688232421875,-0.03863525390625,-0.0008392333984375,0.01446533203125,-0.012939453125,0.0195159912109375,0.0275421142578125,0.009979248046875,-0.0090789794921875,0.033935546875,-0.002796173095703125,-0.0036792755126953125,0.00726318359375,0.046356201171875,0.0021190643310546875,0.003910064697265625,-0.0101470947265625,0.0029163360595703125,0.0007033348083496094,0.012176513671875,-0.0211944580078125,0.005706787109375,0.058624267578125,-0.0098419189453125,-0.04541015625,0.01534271240234375,0.038787841796875,0.00678253173828125,-0.002227783203125,-0.028076171875,0.0200653076171875,0.0173187255859375,0.031463623046875,-0.03070068359375,0.0303497314453125,-0.010894775390625,0.014404296875,0.02105712890625,0.024627685546875,-0.0272979736328125,0.0069732666015625,0.02703857421875,0.023956298828125,0.005519866943359375,0.01517486572265625,-0.016326904296875,0.01375579833984375,-0.016510009765625,-0.0018301010131835938,-0.0165557861328125,0.01029205322265625,-0.026214599609375,0.007427215576171875,0.0009765625,0.023468017578125,-0.0220794677734375,0.020050048828125,-0.0169677734375,-0.032867431640625,0.0123291015625,-0.006702423095703125,0.02496337890625,-0.0037593841552734375,-0.0040130615234375,-0.012420654296875,0.01349639892578125,0.0283660888671875,0.058013916015625,0.0292816162109375,0.01308441162109375,0.01396942138671875,-0.008697509765625,0.018218994140625,-0.0150909423828125,0.006877899169921875,-0.03948974609375,0.006252288818359375,-0.01812744140625,0.0034694671630859375,-0.0212249755859375,0.01107025146484375,0.0159454345703125,-0.0028076171875,-0.0063934326171875,-0.0125732421875,0.01491546630859375,-0.033966064453125,-0.00743865966796875,-0.0007486343383789062,-0.0012788772583007812,-0.0168304443359375,0.0080413818359375,0.0016918182373046875,-0.00003349781036376953,-0.0011301040649414062,0.003208160400390625,-0.00266265869140625,0.034637451171875,0.0007076263427734375,0.03125,0.02545166015625,-0.01059722900390625,0.014007568359375,-0.0017480850219726562,0.004695892333984375,0.040740966796875,-0.021942138671875,0.03729248046875,0.00928497314453125,0.012786865234375,-0.0185089111328125,-0.019744873046875,-0.0016603469848632812,-0.0283660888671875,0.0103302001953125,-0.02349853515625,0.03436279296875,0.004711151123046875,-0.03411865234375,-0.026458740234375,-0.033355712890625,-0.005157470703125,0.0182342529296875,0.01202392578125,-0.02947998046875,-0.0027103424072265625,-0.005352020263671875,-0.02508544921875,0.0266571044921875,-0.0015468597412109375,-0.03369140625,-0.01071929931640625,0.026641845703125,-0.0175933837890625,0.032928466796875,-0.006561279296875,-0.004016876220703125,0.01555633544921875,0.0240631103515625,-0.005695343017578125,-0.0158233642578125,0.0017652511596679688,-0.0262603759765625,0.0251312255859375,0.00429534912109375,0.0202484130859375,-0.0028514862060546875,0.0172576904296875,0.0032672882080078125,0.0309906005859375,-0.0147247314453125,-0.0144805908203125,0.0158538818359375,0.047119140625,-0.03692626953125,0.01201629638671875,-0.0225067138671875,0.0091094970703125,0.025360107421875,0.0175323486328125,0.048980712890625,0.004894256591796875,-0.007411956787109375,-0.004459381103515625,-0.01080322265625,-0.024871826171875,0.021392822265625,-0.034637451171875,0.0303955078125,0.0230255126953125,-0.0003173351287841797,0.003963470458984375,-0.01154327392578125,0.00867462158203125,0.051055908203125,0.0340576171875,0.026214599609375,-0.040313720703125,-0.021514892578125,0.0197906494140625,-0.01345062255859375,-0.0025539398193359375,-0.0158843994140625,-0.01032257080078125,0.00811004638671875,-0.05010986328125,-0.00321197509765625,0.015960693359375,0.0005731582641601562,-0.018280029296875,-0.00994110107421875,0.020172119140625,-0.01486968994140625,-0.0095977783203125,0.050811767578125,-0.009185791015625,-0.01349639892578125,-0.032318115234375,-0.00009965896606445312,-0.0156707763671875,-0.00623321533203125,0.000789642333984375,0.0265045166015625,0.0199737548828125,0.0194091796875,-0.0167388916015625,0.0101318359375,"019f5a7d-8dc5-772c-96a6-f84c24e92643","https:\u002F\u002Fmedia2.dev.to\u002Fdynamic\u002Fimage\u002Fwidth=1200,height=627,fit=cover,gravity=auto,format=auto\u002Fhttps%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fh74g7m8rxed7o1hxz7sq.png",false,"2026-07-13T06:37:16.000Z","improve-performance-by-loading-videos-only-when-theyre-needed","019d6bd6-7fe0-7244-80dc-9a4e8751886a","Jakub Andrzejewski","jakub-andrzejewski","rss","https:\u002F\u002Fdev.to\u002Fjacobandrewsky","This article discusses the importance of lazy loading videos to enhance web performance by deferring their loading until they are needed. It covers how lazy loading can reduce bandwidth usage, improve page load times, and offers practical implementation tips along with browser support considerations.","Improve Performance by Loading Videos Only When They're Needed","2026-07-13T08:00:18.204Z","https:\u002F\u002Fdev.to\u002Fjacobandrewsky\u002Fimprove-performance-by-loading-videos-only-when-theyre-needed-245o",{"clickCount":1407,"viewCount":1408},0,3,[1410,1419,1426],{"id":1411,"image":1412,"publishedAt":1413,"slug":1414,"sourceName":1415,"summary":1416,"title":1417,"url":1418},"019f64ca-32ca-73f5-b458-bc95f1b37561","https:\u002F\u002Fapi.certificates.dev\u002Fstorage\u002FxXZtFg8h2YcCNVmq93AeSIBqMnZSQXZKETKI6xgm.png","2026-07-15T08:00:00.000Z","performance-optimization-in-nuxt-2","Certificates.dev","This article discusses practical techniques to optimize the performance of Nuxt applications, focusing on strategies to enhance speed and efficiency. It provides actionable insights for developers looking to improve their Nuxt app performance.","Performance Optimization in Nuxt","https:\u002F\u002Fcertificates.dev\u002Fblog\u002Fperformance-optimization-in-nuxt-1?friend=MOKKAPPS",{"id":1420,"image":1421,"publishedAt":1422,"slug":1423,"sourceName":1415,"summary":1424,"title":1417,"url":1425},"019f1e68-a398-7614-a565-37bb57fd85c8","https:\u002F\u002Fapi.certificates.dev\u002Fstorage\u002FlAB305vJFYD8SXv60gboztHN0tgrQaSTFlfCfQhq.png","2026-07-01T06:00:00.000Z","performance-optimization-in-nuxt","This article discusses practical techniques for optimizing the performance of Nuxt applications, focusing on methods to achieve faster load times and improved user experience.","https:\u002F\u002Fcertificates.dev\u002Fblog\u002Fperformance-optimization-in-nuxt?friend=MOKKAPPS",{"id":1427,"image":1428,"publishedAt":1429,"slug":1430,"sourceName":1398,"summary":1431,"title":1432,"url":1433},"019eca4b-8dce-754e-ad17-a0f9b1aef338","https:\u002F\u002Fmedia2.dev.to\u002Fdynamic\u002Fimage\u002Fwidth=1200,height=627,fit=cover,gravity=auto,format=auto\u002Fhttps%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fidhps7seqfikj9j24oz3.png","2026-06-15T07:08:48.000Z","10-vue-performance-mistakes-i-still-see-in-production-apps","This article discusses ten common performance mistakes that Vue developers often make in production applications, highlighting issues such as using deep watchers unnecessarily and making everything reactive. It emphasizes the importance of optimizing performance to enhance user experience and offers practical solutions to improve application efficiency.","10 Vue Performance Mistakes I Still See in Production Apps","https:\u002F\u002Fdev.to\u002Fjacobandrewsky\u002F10-vue-performance-mistakes-i-still-see-in-production-apps-52a1",[1435,1439,1442],{"color":1436,"id":1437,"name":1438,"slug":1438},"#10b981","019d6bd8-ca26-775c-b9b5-c3439dbe5789","performance",{"color":1436,"id":1440,"name":1441,"slug":1441},"019f5a7d-bf5a-76e0-903a-c87435cc3e09","lazy-loading",{"color":1436,"id":1443,"name":1444,"slug":1444},"019f5a7d-bf61-746b-a44b-5c0a16ff57d3","video"]