[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"contentNavigation":3,"newsletter-stats":4,"$fQa3xUpnRDPNiFFu2QS4K-DAjYmsapeR9fNhPNBdpkOc":-1,"news-article-how-to-catch-hydration-errors-in-playwright-tests-astro-nuxt-react-ssr":6},[],{"confirmedCount":5},405,{"article":7,"engagement":1434,"relatedArticles":1437,"tags":1465},{"content":8,"createdAt":9,"embedding":10,"id":1419,"image":1420,"isAffiliate":1421,"isPublished":1422,"publishedAt":1423,"slug":1424,"sourceId":1425,"sourceName":1426,"sourceSlug":1427,"sourceType":1428,"sourceUrl":1429,"summary":1430,"title":1431,"updatedAt":1432,"url":1433},"Your E2E tests pass. The page loads, buttons work. But open the browser console: Hydration failed because the server rendered HTML didn't match the client. This is a hydration mismatch. The server sent one thing and the client replaced it with something else. The page still works, so you don’t notice. Your tests don’t check for it, so they pass. What are SSR and hydration? SSR (server-side rendering) means the server generates HTML and sends it to the browser before JavaScript loads. Users see content before client code boots, and search engines can index it. Astro and Nuxt build on this model. Hydration is the next step: client JavaScript takes over the server-rendered HTML, attaching event handlers and state to the existing markup. The contract: the first client render must match what the server sent. When it does not match, the framework discards the server HTML and re-renders on the client. That re-render is a hydration mismatch. Common causes Anything that produces different HTML on client and server: Reading localStorage or window.matchMedia() during render Calling new Date() or Math.random() during render Formatting dates or numbers differently across server and client Rendering conditional branches based on browser-only state Theme toggles and locale formatting cause most of them. If you use Vue with SSR, the window is not defined error comes from the same root cause. VueUse has a pattern for it: A real bug I found I was working on an Astro page and my theme hook was reading browser state during the first render: function getInitialTheme(): Theme { const stored = localStorage.getItem(SITE.themeStorageKey); if (stored === \"light\" || stored === \"dark\") return stored; return window.matchMedia(\"(prefers-color-scheme: dark)\").matches ? \"dark\" : \"light\"; } export function useTheme() { const [theme, setTheme] = useState&lt;Theme&gt;(getInitialTheme); } The server defaulted to dark, but the browser picked light. React saw the mismatch, logged a hydration warning, and re-rendered from scratch. The page still worked, the button still existed. Normal E2E tests passed. The fix: start with a deterministic value, resolve browser state after mount. export function useTheme() { const [theme, setTheme] = useState&lt;Theme&gt;(\"dark\"); const [mounted, setMounted] = useState(false); useEffect(() =&gt; { const preferredTheme = getPreferredTheme(); document.documentElement.classList.toggle(\"dark\", preferredTheme === \"dark\"); setTheme(preferredTheme); setMounted(true); }, []); useEffect(() =&gt; { if (!mounted) return; const root = document.documentElement; root.classList.toggle(\"dark\", theme === \"dark\"); localStorage.setItem(SITE.themeStorageKey, theme); }, [mounted, theme]); return { theme, setTheme, toggleTheme: () =&gt; setTheme((t) =&gt; (t === \"dark\" ? \"light\" : \"dark\")) }; } The core idea Listen to the browser console during a Playwright test. If a hydration warning appears, fail the test. React and Vue log hydration mismatches to the console. You don’t check the console during automated tests, so this fixture does. The fixture Fixtures are Playwright's way of setting up and tearing down what each test needs. Built-in fixtures like `page` and `browser` come for free. You create custom ones with `base.extend()`. Each fixture runs when a test requests it and gets cleaned up afterward. The fixture below injects `hydrationErrors` and `runtimeErrors` into every test that asks for them. I first saw this approach in the npmx.dev open source project and adapted it for my Astro site. My version covers React and Vue hydration strings and catches uncaught runtime exceptions: const HYDRATION_ERROR_PATTERNS = [ \u002Fhydration failed because the server rendered html didn't match the client\u002Fi, \u002Fhydration completed but contains mismatches\u002Fi, \u002Fhydration text content mismatch\u002Fi, \u002Fhydration node mismatch\u002Fi, \u002Fhydration attribute mismatch\u002Fi, ]; function isHydrationError(text: string): boolean { return HYDRATION_ERROR_PATTERNS.some((pattern) =&gt; pattern.test(text)); } function toConsoleText(message: ConsoleMessage): string { return message.text().trim(); } export const test = base.extend&lt;{ hydrationErrors: string[]; runtimeErrors: string[]; }&gt;({ hydrationErrors: async ({ page }, use) =&gt; { const hydrationErrors: string[] = []; const handleConsole = (message: ConsoleMessage) =&gt; { const text = toConsoleText(message); if (isHydrationError(text)) { hydrationErrors.push(text); } }; page.on(\"console\", handleConsole); await use(hydrationErrors); page.off(\"console\", handleConsole); }, runtimeErrors: async ({ page }, use) =&gt; { const runtimeErrors: string[] = []; const handleConsole = (message: ConsoleMessage) =&gt; { const text = toConsoleText(message); if (message.type() === \"error\" &amp;&amp; text.length &gt; 0 &amp;&amp; !isHydrationError(text)) { runtimeErrors.push(text); } }; const handlePageError = (error: Error) =&gt; { runtimeErrors.push(error.message); }; page.on(\"console\", handleConsole); page.on(\"pageerror\", handlePageError); await use(runtimeErrors); page.off(\"console\", handleConsole); page.off(\"pageerror\", handlePageError); }, }); export { expect }; Drop this into test\u002Fe2e\u002Ftest-utils.ts and import from there instead of @playwright\u002Ftest. Related: a full AI-driven QA workflow with Playwright: Using it test(\"home page hydrates cleanly\", async ({ page, hydrationErrors, runtimeErrors }) =&gt; { await page.goto(\"\u002F\", { waitUntil: \"domcontentloaded\" }); await expect(page.getByRole(\"heading\", { name: \"Home\" })).toBeVisible(); expect(hydrationErrors).toEqual([]); expect(runtimeErrors).toEqual([]); }); Start with your homepage. Add one interactive route, then one with a theme toggle or client-only widget. That surfaces most bugs. How npmx.dev does it at scale The npmx.dev project tests hydration correctness for every combination of user settings across every page, around 48 checks from a single fixture. They inject localStorage values via Playwright’s page.addInitScript() before navigation, simulating a returning user with saved preferences. Returning users with non-default settings trigger most hydration mismatches. const PAGES = [\"\u002F\", \"\u002Fabout\", \"\u002Fsettings\", \"\u002Fcompare\", \"\u002Fsearch\", \"\u002Fpackage\u002Fnuxt\"]; test.describe(\"color mode: dark\", () =&gt; { for (const page of PAGES) { test(`${page}`, async ({ page: pw, goto, hydrationErrors }) =&gt; { await injectLocalStorage(pw, { \"npmx-color-mode\": \"dark\" }); await goto(page, { waitUntil: \"hydration\" }); expect(hydrationErrors).toEqual([]); }); } }); async function injectLocalStorage(page: Page, entries: Record&lt;string, string&gt;) { await page.addInitScript((e: Record&lt;string, string&gt;) =&gt; { for (const [key, value] of Object.entries(e)) { localStorage.setItem(key, value); } }, entries); } They repeat this for every setting type, locale, accent color, background theme, package manager, relative dates, each with a non-default value. If any combination causes a hydration mismatch on any page, the test fails. Their fixture uses Vue-specific error strings (\"Hydration completed but contains mismatches\") while mine uses React patterns. The approach is the same, only the strings you match against change. More on how E2E tests relate to unit and integration tests: If you ship an SSR app and do not check for hydration errors in your browser tests, you have one in production right now.","2026-04-09T06:11:38.114Z",[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,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,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,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,176,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,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,221,266,267,268,269,270,14,271,272,273,274,275,276,277,278,83,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,161,305,306,271,294,307,308,309,310,311,38,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,204,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,22,361,362,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,15,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,36,414,415,416,417,418,419,420,229,421,422,423,424,330,425,426,427,428,429,430,431,432,433,434,435,436,437,52,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,327,456,457,74,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,362,487,488,489,490,491,492,493,494,495,496,497,498,499,500,185,501,502,24,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,127,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,546,561,562,563,139,564,565,566,567,568,569,570,571,572,132,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,218,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,127,617,618,619,620,621,622,623,305,624,625,626,627,283,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,168,234,657,658,659,660,661,662,663,664,368,665,666,667,668,666,669,670,671,295,672,673,674,675,676,677,678,679,680,681,682,683,70,684,685,686,687,688,689,690,691,692,693,694,695,513,696,697,698,699,700,701,702,552,703,704,705,706,707,708,295,709,710,711,712,713,714,715,716,717,718,719,584,720,721,722,723,724,725,726,727,728,729,730,731,732,125,733,734,735,356,736,737,738,739,740,741,742,408,743,744,745,330,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,351,766,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,693,348,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,340,829,830,831,832,833,834,835,836,837,161,838,839,579,840,737,841,737,842,843,844,845,846,847,848,849,850,851,852,611,853,854,665,855,593,856,857,858,859,228,782,860,861,33,531,862,863,864,865,866,867,868,869,19,870,871,872,873,811,874,875,876,284,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,29,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,114,925,926,80,927,928,929,930,931,932,933,537,664,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,167,989,990,991,992,993,481,994,995,996,997,998,909,999,1000,1001,1002,271,1003,1004,1005,1006,694,1007,1008,977,1009,1010,1011,268,727,1012,1013,1014,1015,1016,1017,21,1018,1019,1020,1021,1022,1023,1024,1025,1026,272,1027,1028,620,1029,1030,1031,1032,1021,1033,1034,1035,695,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,169,1047,1048,1049,1050,1051,1052,1053,805,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,233,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,167,1098,1099,1100,1101,1102,977,1103,1104,1105,1106,1107,1108,1109,1110,1111,345,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,596,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,533,1082,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1027,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1106,1186,1119,1187,1188,1189,1190,436,668,1191,1192,1193,437,1194,533,399,1195,1196,717,1197,1198,1199,1200,1201,1202,1203,1204,365,1205,533,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1088,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,914,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,668,237,1250,1251,1098,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,944,1269,1270,451,1271,1272,830,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,580,1309,1310,1311,1056,1312,1313,1314,1315,337,1316,1317,1318,1174,1319,1320,1321,1322,1323,1324,1325,1326,362,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,314,1341,1151,1342,1343,727,1344,1227,1345,1346,1347,107,1348,1349,1350,1351,1352,1353,1354,1355,49,1356,729,1357,1358,1359,1360,546,1361,863,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1071,1374,1375,1376,1377,1378,1379,1380,1381,302,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,55,1397,1398,1399,293,1400,1401,1402,1403,694,290,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,601,1417,1418],-0.07281494140625,0.0099334716796875,0.04913330078125,-0.006549835205078125,0.0246734619140625,-0.0158843994140625,-0.00681304931640625,0.0000311732292175293,0.02557373046875,0.0271148681640625,0.0174407958984375,-0.029632568359375,-0.0167083740234375,0.02166748046875,-0.0047454833984375,0.036376953125,-0.01325225830078125,-0.00782012939453125,-0.0123443603515625,0.0146942138671875,0.01983642578125,-0.0011081695556640625,0.0149383544921875,0.02349853515625,0.0244903564453125,-0.01407623291015625,-0.05029296875,0.039459228515625,0.01457977294921875,-0.0160064697265625,0.0101165771484375,-0.0300750732421875,0.00519561767578125,-0.027069091796875,0.02593994140625,0.021881103515625,0.014312744140625,0.0020122528076171875,0.006786346435546875,0.0176849365234375,0.003528594970703125,-0.01910400390625,-0.0021076202392578125,0.006633758544921875,-0.009735107421875,0.0205230712890625,-0.01529693603515625,0.0271453857421875,-0.006061553955078125,0.0099029541015625,-0.0287322998046875,0.01230621337890625,-0.0161285400390625,0.028564453125,0.01313018798828125,-0.019683837890625,-0.0075531005859375,0.049896240234375,-0.01438140869140625,0.043365478515625,0.05029296875,-0.022216796875,-0.0267181396484375,0.0029354095458984375,-0.0631103515625,-0.0210418701171875,-0.037445068359375,-0.01543426513671875,0.0207366943359375,0.028350830078125,0.07720947265625,-0.01293182373046875,0.04156494140625,-0.0208587646484375,0.008453369140625,-0.060302734375,0.021331787109375,0.0192108154296875,0.038055419921875,-0.0018825531005859375,-0.015625,-0.038665771484375,-0.01678466796875,-0.044708251953125,-0.0202178955078125,-0.04217529296875,-0.01165008544921875,-0.004497528076171875,-0.043243408203125,0.005489349365234375,0.041259765625,0.0191650390625,-0.00424957275390625,-0.01727294921875,-0.01264190673828125,-0.0284271240234375,0.0236358642578125,-0.03790283203125,-0.004138946533203125,0.01270294189453125,0.0300140380859375,-0.0305938720703125,-0.06378173828125,0.0256500244140625,0.055938720703125,-0.04595947265625,0.0215911865234375,0.04840087890625,0.015960693359375,-0.01503753662109375,-0.029388427734375,0.0047760009765625,-0.0268707275390625,0.001461029052734375,0.01531982421875,-0.03179931640625,-0.0193328857421875,-0.02996826171875,-0.01204681396484375,-0.00774383544921875,0.024078369140625,0.0227203369140625,0.03436279296875,-0.0310821533203125,0.025634765625,-0.021759033203125,0.0074005126953125,-0.042327880859375,-0.015899658203125,-0.01505279541015625,0.0859375,-0.0098419189453125,0.0308380126953125,-0.05560302734375,-0.0019550323486328125,0.007843017578125,0.0298309326171875,-0.01342010498046875,-0.00806427001953125,0.040924072265625,0.017303466796875,-0.01157379150390625,0.049957275390625,0.0007748603820800781,0.01227569580078125,-0.046600341796875,0.04254150390625,0.032989501953125,-0.0217742919921875,0.0260009765625,-0.0204925537109375,-0.0010547637939453125,-0.047332763671875,0.01123809814453125,-0.0255279541015625,-0.030242919921875,0.032440185546875,0.030181884765625,-0.0300445556640625,-0.0200653076171875,-0.05267333984375,0.0204315185546875,0.009521484375,-0.007030487060546875,-0.0311126708984375,-0.0287628173828125,-0.0377197265625,-0.0081787109375,-0.03302001953125,-0.002593994140625,-0.05645751953125,-0.043853759765625,-0.01519775390625,0.01229095458984375,0.02911376953125,-0.0236663818359375,0.0394287109375,-0.0262298583984375,0.01806640625,0.017578125,-0.003871917724609375,0.01342010498046875,-0.00930023193359375,-0.05670166015625,-0.051849365234375,-0.025604248046875,-0.0214996337890625,-0.01270294189453125,-0.001995086669921875,-0.0240020751953125,-0.032379150390625,0.0214691162109375,-0.0019102096557617188,-0.0229644775390625,0.0005822181701660156,-0.075927734375,0.02239990234375,-0.0021648406982421875,0.004169464111328125,0.048095703125,-0.0101470947265625,0.040435791015625,-0.0245513916015625,0.0250091552734375,-0.00989532470703125,-0.0048980712890625,-0.06915283203125,0.0305938720703125,-0.020751953125,0.04937744140625,0.044952392578125,-0.0032634735107421875,0.040740966796875,-0.030975341796875,-0.00511932373046875,-0.0272369384765625,0.03680419921875,0.0135650634765625,0.00492095947265625,-0.0167694091796875,0.0218658447265625,0.067138671875,-0.0294647216796875,-0.01580810546875,0.04534912109375,0.07275390625,-0.008209228515625,0.03955078125,0.0005869865417480469,0.01065826416015625,0.002742767333984375,-0.02587890625,0.0164642333984375,0.012939453125,-0.046539306640625,0.027679443359375,0.00457000732421875,-0.0275421142578125,-0.002765655517578125,-0.0112457275390625,0.0024662017822265625,-0.037322998046875,-0.006496429443359375,0.048736572265625,0.036651611328125,-0.047393798828125,-0.052978515625,0.08624267578125,-0.0178680419921875,0.00887298583984375,-0.01410675048828125,-0.0279541015625,0.021759033203125,-0.0372314453125,-0.025665283203125,-0.0158538818359375,0.04022216796875,-0.01483154296875,-0.0266265869140625,0.0141754150390625,0.014251708984375,-0.0190277099609375,-0.04107666015625,0.0224456787109375,0.044036865234375,-0.00728607177734375,-0.0181732177734375,0.00946044921875,-0.00970458984375,-0.059600830078125,0.009735107421875,0.0014276504516601562,0.0164031982421875,0.03460693359375,-0.0618896484375,0.0433349609375,-0.015106201171875,-0.057281494140625,-0.0286712646484375,-0.0091094970703125,0.002445220947265625,0.0251007080078125,0.0086822509765625,-0.01812744140625,0.007442474365234375,0.032623291015625,-0.006649017333984375,-0.01082611083984375,0.003292083740234375,0.038604736328125,0.01421356201171875,0.029937744140625,0.06622314453125,0.01265716552734375,-0.039215087890625,0.052490234375,-0.0033740997314453125,0.057525634765625,-0.004302978515625,0.009429931640625,0.00595855712890625,0.020294189453125,-0.0243988037109375,0.0162506103515625,0.011199951171875,-0.007511138916015625,-0.015838623046875,-0.042694091796875,0.017425537109375,-0.03594970703125,0.01284027099609375,-0.00925445556640625,0.02288818359375,-0.04339599609375,-0.0105438232421875,-0.0071563720703125,-0.01436614990234375,-0.05474853515625,-0.008819580078125,-0.04150390625,-0.03192138671875,0.00614166259765625,-0.0226593017578125,-0.061187744140625,0.031280517578125,-0.059051513671875,-0.0087432861328125,-0.041534423828125,-0.01476287841796875,0.023773193359375,0.002193450927734375,-0.06329345703125,-0.047271728515625,0.034454345703125,-0.004955291748046875,0.0195159912109375,-0.020233154296875,0.0133056640625,-0.05078125,0.0009241104125976562,0.004161834716796875,0.022735595703125,0.0364990234375,0.0036945343017578125,0.0027923583984375,0.015716552734375,0.00559234619140625,0.04010009765625,-0.0026187896728515625,-0.007709503173828125,-0.0028591156005859375,-0.0164947509765625,-0.01500701904296875,0.05224609375,0.032684326171875,0.043853759765625,0.004749298095703125,0.037841796875,-0.0185089111328125,-0.032470703125,-0.01340484619140625,0.0404052734375,-0.00788116455078125,0.029083251953125,-0.063232421875,0.040557861328125,-0.006313323974609375,0.020782470703125,0.002162933349609375,0.05670166015625,-0.0016717910766601562,-0.0031223297119140625,-0.0101776123046875,-0.0382080078125,0.0230865478515625,0.01062774658203125,-0.0240936279296875,0.0059967041015625,-0.06768798828125,-0.041412353515625,0.00087738037109375,-0.042083740234375,-0.03167724609375,0.0020751953125,0.0098876953125,0.02471923828125,-0.0065460205078125,0.0509033203125,-0.0077972412109375,0.0218963623046875,0.030670166015625,-0.061279296875,0.02362060546875,0.006900787353515625,0.01282501220703125,0.0036182403564453125,-0.0107421875,-0.01113128662109375,-0.0391845703125,0.005527496337890625,0.002655029296875,0.0565185546875,0.01326751708984375,-0.0196533203125,0.07391357421875,-0.041229248046875,-0.027374267578125,0.0672607421875,-0.046173095703125,-0.0242767333984375,-0.035919189453125,-0.034698486328125,0.0347900390625,0.051361083984375,0.005035400390625,-0.07171630859375,-0.0257110595703125,0.04083251953125,0.0889892578125,-0.005825042724609375,-0.007770538330078125,0.005382537841796875,0.01113128662109375,-0.0416259765625,0.00475311279296875,0.01059722900390625,-0.006229400634765625,-0.0723876953125,-0.0037860870361328125,-0.03631591796875,-0.0014743804931640625,-0.049102783203125,-0.0230560302734375,-0.037994384765625,-0.02532958984375,0.00974273681640625,-0.013153076171875,0.033782958984375,-0.0255126953125,0.0170440673828125,0.0096435546875,0.056427001953125,-0.01568603515625,0.0570068359375,0.002521514892578125,0.0105133056640625,-0.046478271484375,0.04833984375,0.0316162109375,0.07037353515625,0.01055145263671875,0.0254058837890625,-0.05865478515625,0.0236053466796875,-0.006671905517578125,0.051605224609375,-0.0213165283203125,-0.03729248046875,-0.00177001953125,0.00679779052734375,0.0185546875,-0.027923583984375,-0.0728759765625,-0.0201873779296875,-0.0124969482421875,-0.01702880859375,-0.0305328369140625,0.0576171875,0.0760498046875,-0.0400390625,-0.00933074951171875,-0.031829833984375,0.044403076171875,-0.0269927978515625,-0.0114288330078125,-0.0295562744140625,-0.004795074462890625,-0.0299835205078125,-0.0003409385681152344,0.014404296875,0.02728271484375,-0.0204315185546875,0.00913238525390625,-0.06085205078125,-0.039031982421875,0.05511474609375,0.0224761962890625,-0.033660888671875,0.0289764404296875,0.00804901123046875,0.0111236572265625,-0.04852294921875,0.0139617919921875,-0.0030384063720703125,-0.061126708984375,-0.03509521484375,-0.02484130859375,0.03765869140625,0.00418853759765625,0.0201416015625,-0.041046142578125,0.015594482421875,-0.0187225341796875,-0.0145111083984375,0.01082611083984375,0.0120697021484375,-0.01275634765625,0.0009465217590332031,-0.01471710205078125,0.0016603469848632812,-0.016998291015625,0.03570556640625,-0.03253173828125,-0.0207977294921875,-0.033447265625,-0.0167999267578125,-0.0035877227783203125,-0.0186614990234375,-0.01201629638671875,0.016632080078125,-0.035308837890625,-0.0275115966796875,0.00791168212890625,0.0006432533264160156,0.01450347900390625,0.0260162353515625,-0.01277923583984375,0.01873779296875,-0.0183258056640625,0.0179443359375,-0.08709716796875,-0.028778076171875,-0.007160186767578125,0.0148468017578125,0.005558013916015625,0.0240478515625,-0.0294952392578125,-0.005645751953125,0.0102081298828125,0.006511688232421875,0.01580810546875,0.0197906494140625,-0.011322021484375,-0.03466796875,0.0374755859375,0.0163116455078125,-0.0153656005859375,-0.00965118408203125,0.0251922607421875,-0.017547607421875,-0.0439453125,-0.059661865234375,0.021270751953125,-0.01110076904296875,0.01512908935546875,0.0279541015625,0.0011234283447265625,-0.00876617431640625,-0.00009888410568237305,-0.01477813720703125,0.049072265625,-0.0672607421875,0.032135009765625,-0.034149169921875,0.0030231475830078125,0.00885772705078125,0.037567138671875,0.0015106201171875,0.0186309814453125,0.03839111328125,0.006420135498046875,-0.0021762847900390625,0.029296875,0.016143798828125,-0.01007843017578125,0.000053763389587402344,0.035858154296875,0.00960540771484375,0.01336669921875,-0.0021209716796875,0.00920867919921875,0.0057220458984375,0.00955963134765625,-0.0249481201171875,-0.011077880859375,0.01018524169921875,0.00835418701171875,0.002239227294921875,0.0131683349609375,-0.0277252197265625,0.015838623046875,0.0088348388671875,-0.0027065277099609375,0.032470703125,-0.0104827880859375,-0.0012750625610351562,0.02264404296875,0.00968170166015625,-0.006465911865234375,-0.005245208740234375,-0.0004892349243164062,-0.01422882080078125,0.01116943359375,-0.0504150390625,-0.0333251953125,-0.032745361328125,0.001422882080078125,0.004550933837890625,-0.01971435546875,-0.0184173583984375,0.020477294921875,0.03277587890625,-0.006801605224609375,-0.0216217041015625,-0.0173187255859375,0.02044677734375,0.046478271484375,0.011993408203125,0.0012178421020507812,-0.001285552978515625,-0.00281524658203125,-0.025482177734375,-0.018280029296875,-0.007633209228515625,0.007587432861328125,0.0179290771484375,-0.0035266876220703125,-0.01027679443359375,-0.0170440673828125,0.000995635986328125,-0.0225067138671875,0.019683837890625,0.0011205673217773438,-0.01139068603515625,-0.044586181640625,-0.00818634033203125,-0.034027099609375,0.0144195556640625,0.036773681640625,-0.0012722015380859375,0.006710052490234375,0.00215911865234375,0.0037860870361328125,0.01318359375,0.0165252685546875,-0.00897979736328125,0.041748046875,-0.035552978515625,-0.02069091796875,0.032867431640625,0.01096343994140625,-0.00397491455078125,-0.03704833984375,0.006744384765625,-0.0118408203125,0.005290985107421875,-0.01224517822265625,0.0205535888671875,-0.01474761962890625,0.016998291015625,-0.015960693359375,-0.0023651123046875,0.021697998046875,0.0100860595703125,0.0245513916015625,0.062103271484375,-0.0247955322265625,0.01433563232421875,-0.028076171875,0.0311431884765625,-0.0269317626953125,-0.018890380859375,-0.018463134765625,0.01409149169921875,0.015472412109375,0.00624847412109375,-0.045196533203125,0.009033203125,-0.00849151611328125,-0.020538330078125,-0.0460205078125,-0.026397705078125,0.0238494873046875,0.034576416015625,0.01507568359375,-0.037109375,0.0249176025390625,-0.044952392578125,-0.0126190185546875,-0.0040740966796875,-0.026824951171875,-0.006130218505859375,-0.020172119140625,0.0275115966796875,0.00839996337890625,-0.0237274169921875,-0.01385498046875,0.00945281982421875,0.01068878173828125,-0.0281219482421875,-0.00514984130859375,0.00734710693359375,-0.01020050048828125,-0.0166778564453125,-0.025177001953125,0.0042266845703125,-0.00984954833984375,0.054718017578125,0.00675201416015625,0.0241546630859375,0.0082855224609375,-0.0034656524658203125,-0.032135009765625,0.012237548828125,0.0013875961303710938,-0.00637054443359375,-0.0313720703125,-0.06390380859375,0.0145263671875,-0.0017547607421875,-0.00302886962890625,0.03533935546875,0.0157012939453125,-0.003021240234375,0.00534820556640625,-0.0099334716796875,0.0182037353515625,-0.01617431640625,0.0194854736328125,-0.0011739730834960938,0.0028858184814453125,-0.04718017578125,0.0292205810546875,0.015350341796875,-0.0294342041015625,0.01100921630859375,0.0009412765502929688,0.00983428955078125,-0.02301025390625,-0.0102081298828125,-0.0195465087890625,-0.02008056640625,0.00705718994140625,0.0268402099609375,-0.01381683349609375,-0.00391387939453125,-0.0100250244140625,-0.03753662109375,-0.0236358642578125,-0.0183563232421875,-0.0146636962890625,-0.03045654296875,0.018890380859375,0.0202789306640625,0.010833740234375,-0.050201416015625,-0.01462554931640625,0.007190704345703125,-0.003993988037109375,-0.0014009475708007812,0.006107330322265625,-0.019866943359375,-0.004878997802734375,0.06085205078125,0.0134735107421875,0.048614501953125,-0.03515625,0.054290771484375,0.006072998046875,0.0100555419921875,-0.004619598388671875,0.0088653564453125,-0.009918212890625,-0.00627899169921875,-0.0102996826171875,0.00634765625,0.020751953125,-0.06304931640625,0.03375244140625,-0.006122589111328125,-0.03656005859375,0.00357818603515625,0.003772735595703125,-0.007305145263671875,0.0010166168212890625,-0.01171875,0.0109100341796875,0.0089874267578125,0.03143310546875,0.040008544921875,-0.0301055908203125,-0.006378173828125,-0.009033203125,0.005641937255859375,0.006683349609375,-0.0009465217590332031,-0.027099609375,-0.0004334449768066406,0.004913330078125,-0.02581787109375,0.02606201171875,-0.0273590087890625,-0.008453369140625,-0.01371002197265625,0.01690673828125,0.01499176025390625,0.0379638671875,0.0032138824462890625,0.046630859375,-0.0294189453125,0.027435302734375,-0.014251708984375,-0.00618743896484375,-0.012420654296875,-0.0338134765625,-0.00018906593322753906,0.01299285888671875,-0.02655029296875,0.0152435302734375,0.02215576171875,0.01641845703125,0.01702880859375,0.036041259765625,-0.0144195556640625,0.01259613037109375,-0.0303955078125,0.01080322265625,-0.01377105712890625,0.0267181396484375,0.027618408203125,0.009796142578125,0.00402069091796875,0.048370361328125,-0.0094451904296875,-0.00621795654296875,-0.042755126953125,-0.010009765625,0.0008440017700195312,0.0018177032470703125,0.0191497802734375,-0.0019426345825195312,0.012664794921875,-0.0298309326171875,0.041778564453125,-0.01171112060546875,0.00782012939453125,-0.0150604248046875,0.0274810791015625,-0.0031452178955078125,-0.01404571533203125,0.0149688720703125,0.0092010498046875,-0.0206756591796875,-0.0169677734375,0.01000213623046875,0.040191650390625,0.01016998291015625,-0.0032138824462890625,-0.0033473968505859375,0.03759765625,-0.00800323486328125,-0.006443023681640625,-0.018768310546875,-0.042938232421875,-0.0069732666015625,0.03424072265625,0.048797607421875,0.034027099609375,0.0243072509765625,0.004032135009765625,0.03021240234375,-0.0005869865417480469,0.01392364501953125,0.08013916015625,-0.005359649658203125,0.0119171142578125,0.0095977783203125,-0.0012454986572265625,-0.003704071044921875,-0.0165557861328125,-0.0015153884887695312,0.011932373046875,0.004360198974609375,0.0175018310546875,0.037353515625,-0.0157623291015625,0.037384033203125,-0.005329132080078125,0.022796630859375,0.005336761474609375,0.04608154296875,-0.0251312255859375,-0.0220489501953125,-0.028594970703125,-0.0159149169921875,0.0263824462890625,0.0313720703125,-0.024444580078125,0.035308837890625,0.06463623046875,0.0005221366882324219,-0.002685546875,0.00640869140625,0.01033782958984375,-0.033233642578125,0.010009765625,-0.01605224609375,-0.01220703125,-0.004547119140625,0.013275146484375,0.033233642578125,0.028900146484375,0.057830810546875,0.034088134765625,0.04241943359375,0.046783447265625,0.04486083984375,0.055389404296875,-0.01183319091796875,-0.0109100341796875,-0.0254364013671875,-0.030914306640625,0.0150604248046875,0.00970458984375,0.005889892578125,-0.01062774658203125,-0.0248565673828125,0.03472900390625,-0.0216827392578125,0.00090789794921875,-0.0014476776123046875,0.035247802734375,-0.003631591796875,0.031829833984375,0.005222320556640625,0.05438232421875,0.02490234375,0.0017871856689453125,0.004375457763671875,0.01090240478515625,0.0028667449951171875,0.00577545166015625,0.0119476318359375,-0.03955078125,0.04290771484375,0.01519012451171875,0.00896453857421875,-0.004970550537109375,-0.0238800048828125,-0.0019273757934570312,-0.040283203125,-0.004230499267578125,-0.006435394287109375,0.004642486572265625,0.0128936767578125,-0.0153350830078125,0.01474761962890625,-0.0118865966796875,-0.023651123046875,0.0027065277099609375,-0.00499725341796875,-0.004825592041015625,0.00479888916015625,-0.0204620361328125,0.0109710693359375,0.01995849609375,0.0220184326171875,0.0267486572265625,0.008697509765625,-0.00099945068359375,-0.0278472900390625,-0.0150909423828125,-0.0176849365234375,-0.005016326904296875,0.017486572265625,0.0056610107421875,-0.0259246826171875,0.01280975341796875,-0.002315521240234375,0.003154754638671875,-0.02496337890625,-0.0003173351287841797,0.0150909423828125,-0.0162353515625,0.0118408203125,0.00844573974609375,0.035003662109375,0.010955810546875,-0.0041046142578125,0.013763427734375,-0.01061248779296875,-0.0139923095703125,0.0027980804443359375,-0.01392364501953125,0.00421905517578125,0.0419921875,-0.01080322265625,0.008087158203125,0.0302886962890625,-0.004894256591796875,0.0167083740234375,-0.011810302734375,-0.003002166748046875,-0.009124755859375,-0.0219268798828125,-0.032318115234375,0.00893402099609375,-0.008941650390625,-0.0599365234375,-0.0009679794311523438,0.014556884765625,0.0082244873046875,0.006805419921875,0.007175445556640625,-0.033843994140625,-0.014434814453125,-0.0172576904296875,-0.044769287109375,0.0235748291015625,-0.0262451171875,0.042510986328125,0.00012153387069702148,0.04949951171875,0.003803253173828125,-0.007537841796875,-0.036224365234375,0.04742431640625,-0.01473236083984375,-0.0139007568359375,0.0004100799560546875,0.0005588531494140625,0.01488494873046875,-0.0183868408203125,-0.0177764892578125,-0.00347137451171875,-0.002620697021484375,0.0200042724609375,-0.033966064453125,0.0038928985595703125,-0.0266571044921875,0.0013523101806640625,0.006984710693359375,0.0157623291015625,-0.0311431884765625,0.0037384033203125,0.006938934326171875,0.012908935546875,-0.00952911376953125,0.019500732421875,-0.0024127960205078125,-0.0157012939453125,0.0147857666015625,-0.0399169921875,-0.0540771484375,0.00852203369140625,0.0120849609375,-0.0143890380859375,0.01041412353515625,0.0083160400390625,0.047088623046875,0.0210418701171875,0.0010395050048828125,-0.01117706298828125,-0.04351806640625,0.0266876220703125,0.0682373046875,0.0180816650390625,0.017059326171875,-0.0244140625,-0.004848480224609375,-0.0125274658203125,-0.0160369873046875,0.00347900390625,-0.01459503173828125,-0.012939453125,-0.0263214111328125,0.047943115234375,-0.0242156982421875,-0.038604736328125,-0.00714111328125,-0.0007920265197753906,-0.0189056396484375,-0.0025501251220703125,-0.00780487060546875,-0.007038116455078125,-0.0215911865234375,-0.0113983154296875,0.017974853515625,-0.0017442703247070312,-0.024688720703125,-0.00655364990234375,0.016265869140625,0.0217437744140625,-0.0345458984375,0.006969451904296875,-0.0103759765625,-0.0127105712890625,0.0080108642578125,0.0241851806640625,-0.0137786865234375,0.0096588134765625,-0.01251220703125,-0.0068206787109375,-0.0011148452758789062,-0.00513458251953125,0.0006661415100097656,0.00862884521484375,-0.00617218017578125,-0.0187835693359375,-0.005481719970703125,-0.00203704833984375,0.0241241455078125,0.002105712890625,0.0234222412109375,0.0079803466796875,0.00691986083984375,0.0028514862060546875,-0.033203125,0.0183868408203125,0.0007348060607910156,0.06964111328125,-0.0035190582275390625,0.0243988037109375,-0.01328277587890625,0.00594329833984375,-0.0240325927734375,-0.040924072265625,0.0146484375,-0.004802703857421875,0.020721435546875,-0.060577392578125,-0.0207672119140625,-0.038116455078125,0.0116424560546875,0.00545501708984375,0.0074920654296875,-0.01433563232421875,0.005786895751953125,0.0272216796875,0.02520751953125,-0.01885986328125,-0.019317626953125,-0.01317596435546875,0.006023406982421875,0.0174560546875,0.0038890838623046875,0.0283203125,0.0110321044921875,0.00495147705078125,-0.00814056396484375,0.0104522705078125,-0.0177154541015625,-0.0042266845703125,0.00801849365234375,-0.006786346435546875,-0.042877197265625,0.003284454345703125,0.007122039794921875,-0.01096343994140625,0.00720977783203125,-0.024566650390625,0.031646728515625,0.004688262939453125,-0.0156402587890625,0.004207611083984375,-0.01334381103515625,-0.018035888671875,0.0386962890625,-0.0260772705078125,-0.04510498046875,0.01477813720703125,0.0071563720703125,-0.022369384765625,0.01406097412109375,-0.00890350341796875,-0.038330078125,0.01329803466796875,0.04376220703125,-0.014984130859375,-0.023101806640625,0.00982666015625,0.0010995864868164062,0.0002357959747314453,0.004871368408203125,-0.005443572998046875,-0.007659912109375,0.0213470458984375,-0.01490020751953125,-0.00336456298828125,-0.0177459716796875,0.00980377197265625,0.01064300537109375,-0.038177490234375,0.006679534912109375,-0.00691986083984375,0.016204833984375,0.043060302734375,0.0223388671875,-0.043060302734375,-0.0005321502685546875,0.00963592529296875,-0.0020847320556640625,0.0163421630859375,-0.00882720947265625,-0.052154541015625,0.00620269775390625,-0.01531982421875,-0.01419830322265625,-0.018951416015625,0.0180206298828125,0.012420654296875,0.035980224609375,0.004486083984375,0.023712158203125,0.004302978515625,0.0286407470703125,-0.00576019287109375,-0.007366180419921875,-0.026275634765625,-0.0291595458984375,0.01140594482421875,0.0225067138671875,0.0122833251953125,0.0040283203125,0.0305328369140625,0.01303863525390625,0.04107666015625,0.040252685546875,0.0183563232421875,-0.006099700927734375,0.0081634521484375,0.0372314453125,0.0069732666015625,-0.00968170166015625,-0.005908966064453125,-0.010406494140625,0.01187896728515625,0.01898193359375,0.005687713623046875,0.020599365234375,0.0180511474609375,-0.049163818359375,0.00933074951171875,0.01055908203125,-0.041778564453125,0.00812530517578125,-0.0098724365234375,-0.0665283203125,0.0165863037109375,-0.0005369186401367188,0.0067138671875,0.018280029296875,0.01404571533203125,-0.030426025390625,0.0291900634765625,0.0244293212890625,-0.0199737548828125,0.061126708984375,0.00965118408203125,-0.00446319580078125,0.0012378692626953125,0.0173797607421875,0.0002663135528564453,-0.0198822021484375,0.0008687973022460938,0.01366424560546875,-0.00826263427734375,-0.01554107666015625,-0.0080108642578125,0.00011545419692993164,0.0101470947265625,-0.004833221435546875,-0.02215576171875,-0.0083465576171875,0.0030384063720703125,-0.00995635986328125,-0.007762908935546875,-0.038360595703125,-0.018524169921875,-0.01305389404296875,0.00485992431640625,0.0032749176025390625,-0.0302581787109375,0.039306640625,0.01094818115234375,-0.019622802734375,0.03253173828125,0.006114959716796875,-0.0005559921264648438,0.01123046875,0.050811767578125,-0.004024505615234375,0.023284912109375,-0.0181884765625,-0.014404296875,-0.0126495361328125,0.04693603515625,-0.0509033203125,0.0088958740234375,0.0310516357421875,0.009857177734375,0.056732177734375,0.01959228515625,0.016448974609375,0.01141357421875,0.0013179779052734375,-0.01488494873046875,-0.00524139404296875,0.0141448974609375,0.002288818359375,-0.0135650634765625,-0.00006771087646484375,-0.01715087890625,-0.020660400390625,0.01505279541015625,-0.052581787109375,-0.0163726806640625,-0.006011962890625,0.0020465850830078125,-0.0202484130859375,0.0017375946044921875,0.001514434814453125,-0.01947021484375,-0.00209808349609375,-0.0133056640625,-0.007442474365234375,-0.00957489013671875,-0.011932373046875,0.030242919921875,0.010406494140625,-0.00321197509765625,-0.0171966552734375,0.0022335052490234375,-0.0019207000732421875,0.017364501953125,0.0228424072265625,-0.0131072998046875,0.0318603515625,-0.0205535888671875,0.0338134765625,0.03326416015625,-0.00830078125,0.0184478759765625,0.0240020751953125,0.01483154296875,-0.01611328125,0.006519317626953125,-0.006591796875,0.0022869110107421875,0.005672454833984375,0.0220794677734375,0.01032257080078125,-0.00644683837890625,0.0267333984375,-0.002101898193359375,-0.01424407958984375,-0.006565093994140625,-0.01552581787109375,0.042938232421875,0.027923583984375,-0.0184478759765625,-0.016326904296875,-0.0036869049072265625,0.004596710205078125,-0.0302886962890625,-0.0007081031799316406,-0.00992584228515625,-0.03900146484375,-0.002506256103515625,0.0170745849609375,-0.0222625732421875,-0.0212860107421875,-0.0017986297607421875,0.0004603862762451172,-0.0135345458984375,-0.0015869140625,0.02630615234375,0.0038547515869140625,-0.0292816162109375,-0.033355712890625,-0.0027561187744140625,0.01495361328125,-0.00860595703125,-0.0009250640869140625,0.007244110107421875,-0.033935546875,0.00031304359436035156,-0.0234832763671875,-0.005809783935546875,-0.0189361572265625,0.025299072265625,0.01617431640625,0.00775909423828125,0.00044417381286621094,-0.01142120361328125,-0.03692626953125,0.011077880859375,-0.05462646484375,0.011016845703125,-0.021484375,0.002429962158203125,0.0006303787231445312,0.04296875,0.001148223876953125,-0.033538818359375,-0.0092315673828125,-0.01055908203125,0.01519775390625,"019d70de-1de7-70ea-8344-aded9a900a5c","https:\u002F\u002Falexop.dev\u002Fposts\u002Fhow-to-catch-hydration-errors-in-playwright-tests-astro-nuxt-react-ssr\u002Findex.png",false,true,"2026-04-06T00:00:00.000Z","how-to-catch-hydration-errors-in-playwright-tests-astro-nuxt-react-ssr","019d70dd-e3e7-76db-84a4-87b896dea004","alexop.dev","alexopdev","rss","https:\u002F\u002Falexop.dev","The article discusses how to identify and address hydration errors in Playwright tests, particularly in applications using SSR with frameworks like Nuxt and Astro. It explains the concept of hydration mismatches, common causes, and offers solutions to ensure consistent rendering between server and client. The focus is on maintaining a deterministic initial state to prevent hydration warnings during testing.","How to Catch Hydration Errors in Playwright Tests (Astro, Nuxt, React SSR)","2026-04-09T06:11:45.745Z","https:\u002F\u002Falexop.dev\u002Fposts\u002Fcatch-hydration-errors-playwright-tests\u002F",{"clickCount":1435,"viewCount":1436},17,49,[1438,1447,1456],{"id":1439,"image":1440,"publishedAt":1441,"slug":1442,"sourceName":1443,"summary":1444,"title":1445,"url":1446},"019fa898-f0cd-7411-90ba-41fc972176f5","https:\u002F\u002Fmokkapps.twic.pics\u002Fmokkapps.de\u002Fblog\u002Fhow-to-setup-an-mcp-server-for-an-existing-nuxt-app\u002Fog.png","2026-07-28T00:00:00.000Z","how-to-set-up-an-mcp-server-for-an-existing-nuxt-app","Michael Hoffmann","This article provides a beginner-friendly guide on setting up an MCP server for an existing Nuxt application, utilizing the Nuxt MCP Toolkit along with a mocked weather tool. It aims to help developers integrate this functionality seamlessly into their projects.","How to Set Up an MCP Server for an Existing Nuxt App","https:\u002F\u002Fmokkapps.de\u002Fblog\u002Fhow-to-setup-an-mcp-server-for-an-existing-nuxt-app",{"id":1448,"image":1449,"publishedAt":1450,"slug":1451,"sourceName":1452,"summary":1453,"title":1454,"url":1455},"019fa4bb-e96b-7390-9dd8-103110495e6a","https:\u002F\u002Fnuxt.com\u002Fassets\u002Fblog\u002Fv4.5.1.png","2026-07-27T00:00:00.000Z","nuxt-security-patch-releases","Nuxt Blog","Nuxt has released security patches in versions 4.5.1 and 3.21.10, addressing multiple security vulnerabilities. Additionally, a critical fix has been made in @nuxt\u002Fdevtools 3.3.1, and users are advised to upgrade promptly.","Nuxt Security Patch Releases","https:\u002F\u002Fnuxt.com\u002Fblog\u002Fv4-5-security",{"id":1457,"image":1458,"publishedAt":1459,"slug":1460,"sourceName":1461,"summary":1462,"title":1463,"url":1464},"019f8b69-f573-7149-bd7e-acb240b6fd49","https:\u002F\u002Fi.ytimg.com\u002Fvi\u002FZWUx9bDa8PQ\u002Fhqdefault.jpg","2026-07-22T19:18:25.000Z","html-can-now-do-this-without-javascript-2","John Komarnicki","The article discusses new capabilities of HTML that allow certain functionalities to be achieved without relying on JavaScript. It highlights the implications of these changes for web development, particularly in the context of frameworks like Nuxt.","HTML Can Now Do This Without JavaScript 🪄","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=ZWUx9bDa8PQ",[1466,1470,1473,1476],{"color":1467,"id":1468,"name":1469,"slug":1469},"#10b981","019d6bd8-ca26-775c-b9b5-c3439dbe5789","performance",{"color":1467,"id":1471,"name":1472,"slug":1472},"019d6bd8-ca89-735e-a52a-ee53a80a77a9","ssr",{"color":1467,"id":1474,"name":1475,"slug":1475},"019d6bd8-fad3-70a9-a74d-ab96e3a2f45d","nuxt",{"color":1467,"id":1477,"name":1478,"slug":1478},"019d70de-3c07-76bf-9688-9619e1b0d427","testing"]