[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"contentNavigation":3,"news-article-how-to-safely-allow-inline-scripts-without-breaking-security-with-csp-nonce":4,"newsletter-stats":1435,"$fQa3xUpnRDPNiFFu2QS4K-DAjYmsapeR9fNhPNBdpkOc":-1},[],{"article":5,"engagement":1393,"relatedArticles":1396,"tags":1424},{"content":6,"createdAt":7,"embedding":8,"id":1378,"image":1379,"isAffiliate":1380,"isPublished":1381,"publishedAt":1382,"slug":1383,"sourceId":1384,"sourceName":1385,"sourceSlug":1386,"sourceType":1387,"sourceUrl":1388,"summary":1389,"title":1390,"updatedAt":1391,"url":1392},"When building modern web applications, security is not optional. One of the most important protections you can add is a Content Security Policy (CSP). But here’s the catch: 👉 CSP often blocks inline scripts and styles — which can break your app. So how do you keep your app secure without disabling useful features? That’s where CSP nonce comes in - it allows you to safely execute inline code without opening security holes. In this article, we’ll explore: What CSP nonce is What problem it solves How to implement it How it works automatically in Nuxt with nuxt-security Best practices and common pitfalls Let’s dive in. 🤔 What Is CSP Nonce? A nonce (short for number used once) is a unique, random value generated for each request. It is used in CSP to explicitly allow trusted inline scripts or styles. Example: &lt;script nonce=\"abc123\"&gt; console.log('Secure inline script') &lt;\u002Fscript&gt; And in your HTTP headers: Content-Security-Policy: script-src 'nonce-abc123' The browser will only execute scripts that have a matching nonce. CSP nonce is a whitelist mechanism: Only scripts with the correct nonce are allowed Everything else is blocked The nonce changes on every request This makes it extremely effective against XSS (Cross-Site Scripting) attacks. CSP nonce is commonly used for: SSR frameworks - Injecting initial state, Hydration scripts Analytics \u002F tracking snippets - Inline scripts required by providers Critical inline scripts - Small scripts needed before app bootstraps 🟢 What Problem Does CSP Nonce Solve? Without nonce, you usually face a trade-off: ❌ Allow inline scripts (unsafe) Content-Security-Policy: script-src 'unsafe-inline' Problem: Opens the door to XSS attacks Any injected script can run ❌ Block inline scripts completely Content-Security-Policy: script-src 'self' Problem: breaks inline event handlers breaks injected scripts (SSR hydration, state) breaks some frameworks 🟢 How to Implement CSP Nonce The process is relatively simple but let's break it down and explain each step individually. Step 1: Generate a nonce per request Example (Node.js): import crypto from 'crypto' function generateNonce() { return crypto.randomBytes(16).toString('base64') } Step 2: Add it to response headers const nonce = generateNonce() res.setHeader( 'Content-Security-Policy', `script-src 'nonce-${nonce}'` ) Step 3: Inject it into your HTML &lt;script nonce=\"{{nonce}}\"&gt; window.__INITIAL_STATE__ = {} &lt;\u002Fscript&gt; ⚠️ Critical rule The nonce in the header and HTML must match exactly. Otherwise, script will be blocked and app may break silently. 🟢 CSP Nonce in Nuxt (with nuxt-security) If you’re using Nuxt, things get much easier thanks to nuxt-security module that can: Automatically generate nonce per request Inject it into CSP headers Attach it to scripts\u002Fstyles It makes it much easier to work with CSP nonces in Nuxt. Let's take a look at the following configuration: export default defineNuxtConfig({ modules: ['nuxt-security'], security: { headers: { contentSecurityPolicy: { 'script-src': [ \"'self'\", \"'nonce-{{nonce}}'\" ] } } } }) What happens automatically: Nuxt generates a nonce per request Replaces {{nonce}} in headers Applies nonce to inline scripts You don’t need to manually wire everything You can read more here: https:\u002F\u002Fnuxt-security.vercel.app\u002F 🟢 Common Mistakes Let's take a look at the list of common mistakes to understand what to look for: ❌ Reusing the same nonce - Nonce must be unique per request and cryptographically random ❌ Forgetting to apply nonce in HTML - if you only set CSP header the scripts will still be blocked ❌ Mixing nonce with unsafe-inline - script-src 'unsafe-inline' 'nonce-abc' ❌ Caching issues - if HTML is cached nonce may not match header 🧪 Best Practices Generate nonce per request Use secure randomness (crypto) Never reuse nonce Avoid unsafe-inline Use frameworks\u002Ftools (like nuxt-security) Test CSP in report-only mode first Monitor browser console for CSP violations 📖 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 CSP nonce is a powerful mechanism that allows you to safely use inline scripts while maintaining strong security. In this article, you learned: What CSP nonce is and how it works What problem it solves (security vs flexibility) How to implement it step by step How Nuxt + nuxt-security handle it automatically Common mistakes and best practices Take care! And happy coding as always 🖥️","2026-04-27T08:00:05.007Z",[9,10,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,23,136,137,138,139,140,141,142,143,144,145,146,30,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,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,122,242,243,244,245,246,128,247,68,248,249,250,251,252,253,254,255,256,257,51,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,191,281,282,283,284,285,286,287,288,289,290,291,292,293,256,294,295,296,297,298,209,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,268,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,16,339,340,226,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,168,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,136,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,432,433,434,435,436,437,438,439,162,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,337,364,444,466,79,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,57,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,561,562,563,356,564,565,488,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,542,600,601,602,603,604,605,606,607,608,609,221,610,458,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,527,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,427,650,651,652,653,654,594,655,656,657,164,658,659,660,661,662,663,459,664,665,666,667,226,668,669,670,671,672,673,674,675,676,677,366,678,679,680,681,682,683,684,685,686,687,498,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,259,713,714,715,716,415,717,718,719,720,94,721,722,723,724,725,726,727,728,729,730,112,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,420,753,754,755,756,755,757,758,759,760,761,762,763,764,765,175,766,767,762,768,769,770,771,772,773,774,775,517,776,777,778,779,549,440,780,781,782,783,784,785,348,786,787,788,789,790,37,791,792,778,793,102,228,794,795,796,797,798,799,800,801,802,803,804,805,652,806,807,433,808,809,246,810,811,35,812,813,814,815,359,816,817,818,819,820,821,822,808,823,824,825,503,826,827,828,423,829,830,831,832,833,834,835,836,837,838,839,840,295,841,842,843,844,845,846,847,848,405,23,849,850,750,487,851,852,853,854,855,856,857,858,859,860,861,862,74,863,864,865,866,867,868,869,46,870,871,872,873,874,875,876,877,878,879,880,881,882,146,883,884,885,886,887,888,889,890,891,441,892,796,893,894,895,686,896,897,898,899,900,901,902,903,904,905,906,28,907,908,860,909,626,910,911,912,913,914,915,916,917,918,326,919,920,921,20,922,923,924,925,926,927,928,691,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,158,947,948,949,950,951,952,953,954,955,956,957,567,958,959,960,961,962,963,964,965,966,967,544,968,969,970,971,972,973,974,975,976,977,37,976,978,782,979,802,980,981,982,983,984,96,525,985,986,694,987,988,989,990,991,992,993,994,995,996,997,998,999,449,1000,1001,1002,1003,1004,1005,1006,1007,1008,948,1009,1010,1011,312,1012,1013,1014,1015,1016,1017,1018,1019,1020,65,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,202,1045,1046,348,1047,1048,317,1049,1050,1051,1052,1053,1054,996,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,337,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,671,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,326,1096,1097,1098,1099,916,1100,1101,918,801,1102,880,1103,1104,1105,64,1106,933,1107,1108,1109,271,1110,1111,1112,1113,1114,1115,1116,237,1090,1117,1118,1119,1120,1121,1122,1123,1124,48,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,240,425,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,747,1155,478,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,975,1174,669,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,804,1186,1187,1188,1123,1189,1190,1191,1192,1193,1194,1123,1110,1195,612,1196,955,1197,1198,662,1199,96,102,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,415,1210,1211,918,1212,1213,1214,1215,1023,400,1216,1217,137,1218,1219,1220,1221,1222,1223,68,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,150,1236,1237,1238,1239,1240,1241,768,812,1242,1243,1244,825,1245,861,1246,1247,1248,1249,935,1250,25,1251,203,1173,404,1252,1253,496,1254,1255,1256,152,1257,1258,1259,1260,1261,225,1262,1263,1264,1265,1266,1267,1268,1269,1270,843,1271,1272,148,1273,1274,494,913,1275,1276,1277,1278,1279,1280,325,1281,1282,1283,1284,1285,1286,1287,1288,646,1289,191,1290,1291,1292,1293,1294,1295,1296,935,1297,463,1298,1299,887,1300,1301,1302,1303,1304,1305,812,1306,1307,1308,1049,511,1309,1310,83,1311,1312,1313,1314,232,650,1315,1316,1317,1318,1132,1139,1319,1320,493,376,1321,1322,1323,652,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,723,1355,791,1356,1357,1358,738,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,541,1370,1371,1372,1373,1246,1374,390,1204,1375,1376,1377],0.00641632080078125,0.00519561767578125,0.044097900390625,-0.01242828369140625,0.007106781005859375,-0.01580810546875,-0.04296875,-0.0233306884765625,0.0170135498046875,0.017181396484375,0.051971435546875,-0.01904296875,-0.009796142578125,0.0194854736328125,-0.023101806640625,0.0172271728515625,-0.02471923828125,-0.0028591156005859375,0.012237548828125,-0.0174407958984375,0.0546875,0.059417724609375,-0.0108184814453125,0.039642333984375,0.005954742431640625,-0.022247314453125,0.032470703125,0.018035888671875,0.01320648193359375,-0.0199737548828125,0.01192474365234375,-0.028839111328125,-0.0318603515625,0.002399444580078125,-0.00505828857421875,0.005664825439453125,0.019012451171875,-0.01525115966796875,0.004474639892578125,0.012054443359375,-0.0118560791015625,-0.0009379386901855469,-0.008819580078125,0.01259613037109375,-0.0023288726806640625,0.043701171875,-0.0037250518798828125,-0.0423583984375,-0.01184844970703125,0.0209808349609375,0.01535797119140625,-0.015625,0.01390838623046875,0.0560302734375,-0.0447998046875,0.011962890625,-0.014068603515625,0.03363037109375,-0.006504058837890625,0.032928466796875,0.0367431640625,-0.0714111328125,-0.0552978515625,0.05810546875,0.01541900634765625,0.019073486328125,0.016265869140625,-0.036651611328125,0.03509521484375,0.06982421875,0.0576171875,0.004215240478515625,0.044036865234375,-0.0218353271484375,-0.0104827880859375,0.0113372802734375,0.0003082752227783203,0.0251617431640625,0.053955078125,0.02093505859375,0.028564453125,0.0217437744140625,-0.021026611328125,-0.0418701171875,-0.035552978515625,-0.01251220703125,-0.03466796875,0.0180206298828125,-0.05609130859375,0.0596923828125,0.003086090087890625,0.06396484375,-0.043853759765625,0.0186614990234375,0.0175628662109375,0.027313232421875,-0.042144775390625,-0.0005679130554199219,0.042022705078125,0.06280517578125,0.0511474609375,-0.043121337890625,-0.05133056640625,0.00202178955078125,0.061004638671875,0.0145111083984375,0.041717529296875,0.037841796875,-0.0173492431640625,-0.049560546875,-0.031707763671875,0.007534027099609375,-0.0011444091796875,0.042755126953125,0.032623291015625,-0.0701904296875,-0.0206298828125,0.01293182373046875,0.00997161865234375,-0.006580352783203125,0.000052988529205322266,0.0211334228515625,0.005542755126953125,-0.06011962890625,0.019989013671875,-0.031524658203125,-0.0394287109375,-0.01328277587890625,-0.0205535888671875,-0.005218505859375,-0.03131103515625,0.059173583984375,-0.0491943359375,-0.029541015625,0.0142822265625,-0.016632080078125,-0.057098388671875,-0.0138397216796875,0.03033447265625,-0.031402587890625,0.04241943359375,0.01491546630859375,-0.007244110107421875,-0.021270751953125,-0.0006861686706542969,0.0193634033203125,-0.0226898193359375,-0.0010728836059570312,-0.049957275390625,-0.0100860595703125,-0.00691986083984375,0.02545166015625,-0.0240631103515625,-0.033843994140625,-0.01171112060546875,0.0099334716796875,-0.0224456787109375,-0.007015228271484375,-0.0278472900390625,0.0292205810546875,-0.0121002197265625,-0.0391845703125,-0.0162200927734375,-0.0032787322998046875,0.004535675048828125,-0.0242767333984375,-0.021148681640625,0.057952880859375,-0.0247039794921875,-0.046142578125,-0.0194091796875,-0.006694793701171875,0.053863525390625,-0.005954742431640625,-0.02569580078125,-0.027801513671875,0.0081787109375,0.038726806640625,0.0022373199462890625,0.024688720703125,-0.019378662109375,0.043426513671875,-0.0325927734375,0.01024627685546875,-0.018524169921875,-0.0159149169921875,-0.031768798828125,-0.04217529296875,-0.0258941650390625,-0.01345062255859375,-0.0015001296997070312,0.02069091796875,-0.00913238525390625,-0.047454833984375,0.0150909423828125,0.00039196014404296875,0.08502197265625,-0.01309967041015625,-0.045623779296875,0.006732940673828125,-0.018341064453125,0.0157318115234375,0.0123138427734375,-0.0091552734375,-0.01824951171875,-0.0809326171875,0.005062103271484375,-0.01558685302734375,-0.0028972625732421875,0.05364990234375,-0.00647735595703125,0.00217437744140625,-0.034210205078125,-0.035186767578125,0.0660400390625,-0.00046944618225097656,0.0162506103515625,-0.024993896484375,-0.0011110305786132812,0.012786865234375,0.04058837890625,-0.0247955322265625,0.04791259765625,0.0474853515625,-0.0028934478759765625,0.01373291015625,0.0007624626159667969,0.01727294921875,0.004261016845703125,0.035614013671875,-0.0413818359375,-0.0232391357421875,-0.01450347900390625,0.0206146240234375,0.0014410018920898438,-0.051544189453125,-0.02734375,0.009796142578125,-0.0244903564453125,0.020751953125,0.0117340087890625,-0.0224609375,-0.0269012451171875,-0.00788116455078125,0.0215301513671875,0.0005426406860351562,0.07086181640625,-0.01107025146484375,-0.00791168212890625,-0.044921875,0.059906005859375,0.00555419921875,0.0096588134765625,0.0171051025390625,0.0198211669921875,-0.0011377334594726562,-0.0197601318359375,-0.0181732177734375,-0.036407470703125,-0.01119232177734375,0.0043487548828125,-0.0171661376953125,0.041839599609375,-0.00817108154296875,0.034515380859375,0.007709503173828125,-0.00720977783203125,-0.06610107421875,-0.032440185546875,0.0084075927734375,0.01187896728515625,-0.005405426025390625,0.054962158203125,-0.07965087890625,-0.0526123046875,-0.001979827880859375,0.0025634765625,0.0043182373046875,-0.0160064697265625,-0.03363037109375,-0.0298004150390625,-0.005229949951171875,-0.0283966064453125,0.00640106201171875,0.045196533203125,0.0303802490234375,-0.0020656585693359375,0.0285186767578125,-0.00301361083984375,0.035980224609375,-0.0250396728515625,-0.0411376953125,0.043792724609375,0.049224853515625,-0.00836181640625,0.021636962890625,0.0238189697265625,-0.009429931640625,0.00872039794921875,0.032501220703125,0.0295562744140625,-0.045501708984375,0.01184844970703125,-0.027435302734375,-0.0299530029296875,0.01386260986328125,0.0191192626953125,-0.039703369140625,0.031890869140625,-0.017059326171875,0.044952392578125,-0.0310821533203125,-0.01197052001953125,-0.041717529296875,0.0190582275390625,0.00017976760864257812,-0.01100921630859375,0.03814697265625,0.04461669921875,0.0030517578125,-0.01442718505859375,-0.043670654296875,0.040924072265625,-0.0025482177734375,-0.045562744140625,-0.055389404296875,0.034637451171875,0.00548553466796875,0.04095458984375,-0.00464630126953125,-0.0262451171875,0.014007568359375,0.0188751220703125,0.0109100341796875,-0.08465576171875,-0.0122528076171875,0.046875,0.034942626953125,0.001270294189453125,-0.0087127685546875,0.0047760009765625,0.01082611083984375,0.0188140869140625,-0.0030670166015625,0.0030193328857421875,-0.0264892578125,-0.019317626953125,-0.0233612060546875,-0.06976318359375,0.02056884765625,-0.0164642333984375,0.004947662353515625,0.007137298583984375,0.04669189453125,-0.0372314453125,0.0163726806640625,-0.00789642333984375,-0.01387786865234375,-0.00957489013671875,-0.0016527175903320312,0.004825592041015625,-0.044708251953125,0.055267333984375,-0.0012340545654296875,0.04876708984375,0.038330078125,-0.0022907257080078125,0.0350341796875,0.003265380859375,0.00457000732421875,-0.00180816650390625,0.0187530517578125,0.043548583984375,0.031829833984375,-0.03802490234375,-0.01299285888671875,0.01007080078125,-0.01171875,-0.018829345703125,-0.0029697418212890625,0.04034423828125,0.007038116455078125,0.023101806640625,0.0288543701171875,-0.026702880859375,0.013031005859375,0.047149658203125,0.0318603515625,-0.04052734375,-0.00328826904296875,-0.0265655517578125,-0.0287933349609375,-0.01056671142578125,0.0009131431579589844,-0.0013151168823242188,-0.0135345458984375,-0.01136016845703125,0.01806640625,0.02838134765625,0.006023406982421875,0.0302886962890625,0.011077880859375,0.0826416015625,-0.0401611328125,-0.0144500732421875,0.055633544921875,0.029510498046875,-0.035797119140625,-0.0106201171875,-0.00849151611328125,0.0225372314453125,0.012908935546875,0.03466796875,-0.04144287109375,0.0308380126953125,-0.0211944580078125,0.0089874267578125,0.040618896484375,-0.004913330078125,-0.0168609619140625,0.0059661865234375,0.0298309326171875,-0.0006976127624511719,0.0279388427734375,0.01206207275390625,-0.012725830078125,0.007678985595703125,-0.0201568603515625,-0.07843017578125,0.03692626953125,0.00272369384765625,-0.042083740234375,-0.035247802734375,-0.0264129638671875,-0.038848876953125,-0.02398681640625,0.00670623779296875,0.061767578125,-0.01369476318359375,-0.021575927734375,-0.0450439453125,0.046783447265625,-0.01560211181640625,0.01456451416015625,0.0433349609375,-0.0011606216430664062,0.02337646484375,-0.00034356117248535156,0.01251983642578125,0.03985595703125,0.02532958984375,-0.0292205810546875,0.00113677978515625,0.06304931640625,-0.0203399658203125,0.05389404296875,0.0014858245849609375,-0.04461669921875,0.0094757080078125,-0.0223388671875,-0.01187896728515625,0.01439666748046875,-0.00994110107421875,0.004985809326171875,0.009246826171875,0.05279541015625,0.0694580078125,0.0498046875,0.04107666015625,0.0069732666015625,0.01336669921875,-0.0119476318359375,-0.004970550537109375,0.040313720703125,-0.0112152099609375,-0.00846099853515625,-0.043487548828125,0.015350341796875,-0.0238189697265625,-0.0309600830078125,-0.001216888427734375,0.03082275390625,-0.006931304931640625,-0.02294921875,0.022735595703125,0.0216522216796875,-0.0010766983032226562,0.0169830322265625,0.01555633544921875,-0.0029048919677734375,-0.00992584228515625,0.026947021484375,0.044281005859375,0.011016845703125,-0.029052734375,-0.0220794677734375,-0.0006628036499023438,-0.020477294921875,0.052215576171875,0.006877899169921875,-0.015411376953125,-0.00013530254364013672,0.04705810546875,-0.00311279296875,-0.017822265625,-0.003505706787109375,-0.01071929931640625,-0.00595855712890625,0.0159454345703125,-0.005588531494140625,-0.0501708984375,0.00986480712890625,-0.0186614990234375,0.011444091796875,-0.0010251998901367188,-0.027069091796875,0.03338623046875,-0.0204620361328125,0.0267333984375,-0.01316070556640625,0.0009350776672363281,0.0003352165222167969,-0.0198974609375,0.0109405517578125,-0.00801849365234375,-0.01104736328125,0.02191162109375,-0.0504150390625,0.0001990795135498047,-0.0263214111328125,-0.028350830078125,-0.05810546875,-0.039642333984375,0.013824462890625,0.01190185546875,0.006214141845703125,0.0258941650390625,-0.005519866943359375,0.04559326171875,0.0293121337890625,0.0233612060546875,-0.00443267822265625,0.050048828125,-0.0163116455078125,-0.0249786376953125,0.00699615478515625,0.0028400421142578125,0.0154571533203125,-0.00872802734375,0.01300811767578125,-0.04156494140625,0.041748046875,-0.0061187744140625,-0.003360748291015625,0.01444244384765625,-0.04412841796875,-0.006038665771484375,0.007686614990234375,-0.005565643310546875,0.00685882568359375,0.00695037841796875,0.007053375244140625,-0.0162353515625,0.02557373046875,0.010986328125,-0.0287322998046875,0.0044403076171875,0.0089263916015625,0.01000213623046875,0.033294677734375,0.008697509765625,-0.0016469955444335938,0.0022296905517578125,-0.0023365020751953125,0.007720947265625,0.000732421875,-0.0379638671875,-0.007232666015625,0.033416748046875,-0.037689208984375,0.0036106109619140625,-0.0038890838623046875,0.007801055908203125,0.005359649658203125,0.0281829833984375,0.027801513671875,0.064208984375,0.01247406005859375,-0.0159759521484375,0.0038280487060546875,0.0268096923828125,-0.0204010009765625,-0.0007696151733398438,-0.0025844573974609375,-0.01085662841796875,0.006008148193359375,0.025238037109375,0.00516510009765625,-0.005100250244140625,0.049560546875,0.0126190185546875,-0.0032367706298828125,-0.047027587890625,-0.01654052734375,-0.0004940032958984375,0.006591796875,0.02288818359375,0.01351165771484375,-0.0098419189453125,-0.00775146484375,0.0179595947265625,0.0286712646484375,0.01129150390625,-0.033050537109375,-0.042449951171875,-0.0015382766723632812,0.0230712890625,0.0162353515625,0.014739990234375,0.0112457275390625,0.00543212890625,0.0276947021484375,0.01415252685546875,-0.02081298828125,-0.05828857421875,0.0005855560302734375,0.01497650146484375,0.0006399154663085938,-0.0027942657470703125,-0.0209808349609375,0.01824951171875,-0.0007939338684082031,0.00299835205078125,0.0305023193359375,0.01043701171875,0.01332855224609375,-0.0198211669921875,-0.006153106689453125,-0.01508331298828125,-0.0284423828125,0.015106201171875,-0.01922607421875,-0.034576416015625,-0.027557373046875,0.0251922607421875,0.004291534423828125,0.03558349609375,0.011199951171875,-0.0037555694580078125,0.006256103515625,0.050628662109375,-0.0286865234375,0.053375244140625,-0.0025997161865234375,0.0013532638549804688,-0.014739990234375,-0.0221405029296875,0.035552978515625,0.0111846923828125,0.023162841796875,0.009185791015625,0.01151275634765625,-0.010284423828125,0.003154754638671875,0.026702880859375,-0.0086517333984375,0.0005359649658203125,0.0033473968505859375,0.0184783935546875,0.006435394287109375,0.0032634735107421875,0.036834716796875,-0.035064697265625,-0.02972412109375,0.0247955322265625,0.0007605552673339844,-0.003559112548828125,-0.015655517578125,-0.0347900390625,-0.0266571044921875,-0.033538818359375,-0.0025730133056640625,-0.038604736328125,0.01123809814453125,0.01078033447265625,0.0177459716796875,-0.0261077880859375,-0.004863739013671875,0.005535125732421875,-0.04339599609375,-0.0308837890625,-0.01236724853515625,0.0278472900390625,-0.01861572265625,0.045684814453125,-0.00415802001953125,0.056549072265625,-0.0170440673828125,-0.0660400390625,0.022125244140625,0.04150390625,-0.0215606689453125,-0.003993988037109375,-0.019622802734375,-0.034881591796875,-0.01070404052734375,-0.0007414817810058594,-0.0010366439819335938,-0.00958251953125,0.07080078125,0.0261077880859375,-0.037811279296875,0.02227783203125,-0.01432037353515625,-0.035369873046875,0.00881195068359375,-0.006992340087890625,0.00910186767578125,-0.005992889404296875,-0.0343017578125,0.024627685546875,-0.0282745361328125,0.01419830322265625,0.0229034423828125,0.024169921875,-0.01454925537109375,0.0219573974609375,0.018829345703125,0.003780364990234375,-0.016510009765625,0.051788330078125,-0.04010009765625,0.039581298828125,-0.025909423828125,0.01145172119140625,-0.04974365234375,0.002582550048828125,0.009521484375,-0.0181121826171875,-0.052032470703125,0.004322052001953125,0.006603240966796875,-0.0028400421142578125,-0.034912109375,-0.0156402587890625,-0.01456451416015625,-0.007717132568359375,0.02618408203125,0.0005478858947753906,0.01210784912109375,-0.05908203125,-0.050628662109375,0.0203094482421875,0.02166748046875,-0.04901123046875,-0.02056884765625,-0.0298919677734375,-0.0521240234375,-0.0259552001953125,0.00797271728515625,0.021270751953125,-0.01080322265625,0.004550933837890625,0.03009033203125,0.0552978515625,-0.01318359375,0.02520751953125,0.00928497314453125,0.00004601478576660156,-0.004375457763671875,-0.0249176025390625,-0.00799560546875,0.0113525390625,0.0202789306640625,0.00643157958984375,-0.045440673828125,0.00479888916015625,-0.0004754066467285156,-0.0148162841796875,0.0287628173828125,-0.01617431640625,0.01494598388671875,-0.0199432373046875,0.0035953521728515625,0.0304718017578125,-0.01062774658203125,0.03240966796875,0.0158233642578125,0.035675048828125,-0.017974853515625,-0.01326751708984375,-0.0019931793212890625,-0.01910400390625,0.025543212890625,-0.0008988380432128906,0.0165252685546875,-0.03656005859375,0.0120849609375,-0.029510498046875,-0.04693603515625,0.003955841064453125,0.0042266845703125,0.033966064453125,0.01468658447265625,-0.0021648406982421875,-0.0281829833984375,0.01361846923828125,0.02410888671875,0.01215362548828125,0.005764007568359375,0.00873565673828125,-0.04254150390625,-0.0145721435546875,0.00031566619873046875,0.0261993408203125,0.00751495361328125,-0.01629638671875,-0.0133209228515625,-0.0017528533935546875,-0.01410675048828125,0.0416259765625,-0.0167694091796875,0.0214385986328125,0.047607421875,-0.0178680419921875,-0.0144195556640625,0.0210723876953125,0.0088958740234375,-0.05047607421875,-0.045379638671875,0.0274810791015625,-0.0204925537109375,0.007778167724609375,-0.0025787353515625,-0.004962921142578125,-0.005626678466796875,0.01044464111328125,0.01432037353515625,-0.0281524658203125,0.0310821533203125,-0.0335693359375,0.00010657310485839844,0.0111236572265625,-0.029144287109375,0.0172119140625,0.03753662109375,-0.059661865234375,-0.0268096923828125,0.0007948875427246094,-0.02740478515625,0.0152740478515625,0.0281524658203125,0.002353668212890625,-0.0063934326171875,0.0321044921875,-0.0157012939453125,-0.015838623046875,0.04888916015625,-0.0028285980224609375,0.0106048583984375,-0.046356201171875,0.010772705078125,-0.017303466796875,0.00922393798828125,0.041595458984375,0.01430511474609375,-0.0208282470703125,0.027099609375,-0.032318115234375,0.04473876953125,0.02685546875,-0.01473236083984375,0.0007834434509277344,-0.0004925727844238281,0.0205535888671875,-0.0254364013671875,0.0169525146484375,0.061187744140625,-0.01727294921875,0.063232421875,0.045623779296875,0.037078857421875,0.0265350341796875,-0.006496429443359375,-0.01157379150390625,0.036407470703125,0.01488494873046875,-0.0272216796875,0.0128936767578125,0.00725555419921875,0.017730712890625,-0.00962066650390625,0.040283203125,0.01152801513671875,-0.0185546875,-0.013092041015625,-0.0275115966796875,0.00833892822265625,-0.020599365234375,-0.0275726318359375,-0.0303802490234375,0.0004949569702148438,-0.00959014892578125,0.01322174072265625,0.0190277099609375,0.01387786865234375,-0.01812744140625,0.0182952880859375,-0.0117034912109375,0.033172607421875,-0.006587982177734375,-0.02435302734375,-0.0064544677734375,-0.03436279296875,0.010345458984375,0.0225982666015625,0.006168365478515625,-0.00830841064453125,0.01271820068359375,-0.0220184326171875,-0.032623291015625,0.005321502685546875,0.00818634033203125,0.005706787109375,0.034423828125,0.0264434814453125,0.02099609375,0.002330780029296875,0.03228759765625,0.00168609619140625,-0.00643157958984375,-0.004150390625,0.01442718505859375,0.0284423828125,0.01316070556640625,-0.057586669921875,0.032745361328125,-0.027984619140625,0.00482940673828125,0.046234130859375,0.00849151611328125,0.005344390869140625,0.0149383544921875,-0.001079559326171875,0.0060577392578125,-0.0151214599609375,-0.040740966796875,0.017974853515625,-0.01065826416015625,0.0124359130859375,0.0135498046875,0.0174407958984375,0.0232696533203125,0.0065765380859375,-0.0116729736328125,0.017242431640625,-0.004955291748046875,0.0161895751953125,-0.0003643035888671875,0.0303497314453125,0.0019969940185546875,0.006290435791015625,-0.001636505126953125,-0.024871826171875,-0.00603485107421875,-0.00927734375,-0.0242156982421875,-0.005069732666015625,0.00017178058624267578,-0.004261016845703125,-0.024658203125,0.0223846435546875,0.0056610107421875,0.048065185546875,0.01055145263671875,0.01502227783203125,-0.011444091796875,0.00628662109375,-0.0127716064453125,0.00720977783203125,0.016326904296875,0.0477294921875,0.0286407470703125,-0.0006613731384277344,0.012542724609375,-0.012542724609375,0.03021240234375,-0.01552581787109375,0.046295166015625,-0.036773681640625,-0.0225067138671875,0.010040283203125,-0.023834228515625,-0.0014581680297851562,-0.01111602783203125,0.006763458251953125,0.0046234130859375,0.018707275390625,-0.0145416259765625,-0.0167388916015625,-0.005680084228515625,0.016754150390625,-0.006359100341796875,-0.0010595321655273438,-0.02960205078125,-0.0146484375,0.01375579833984375,0.01324462890625,0.028717041015625,0.022796630859375,0.0019369125366210938,-0.0159454345703125,0.070068359375,0.0032024383544921875,-0.00568389892578125,0.00034546852111816406,-0.001430511474609375,0.01467132568359375,-0.0445556640625,0.006061553955078125,-0.0416259765625,-0.01361083984375,0.0116729736328125,0.045806884765625,0.0010709762573242188,-0.00984954833984375,-0.0026721954345703125,0.0114593505859375,0.0183563232421875,-0.010406494140625,0.0224761962890625,-0.025604248046875,0.024658203125,0.0231475830078125,0.02117919921875,-0.0010480880737304688,-0.011505126953125,0.00319671630859375,0.01230621337890625,0.03924560546875,0.023468017578125,-0.003589630126953125,0.00756072998046875,-0.0030422210693359375,-0.006923675537109375,0.047576904296875,-0.0202484130859375,0.0301361083984375,0.04296875,0.0093994140625,0.0026073455810546875,0.015869140625,-0.00833892822265625,-0.003040313720703125,-0.004573822021484375,0.05792236328125,0.0193023681640625,-0.03179931640625,0.00962066650390625,0.00194549560546875,0.0145263671875,0.0158843994140625,0.0016508102416992188,-0.0200042724609375,-0.01074981689453125,0.01025390625,-0.0352783203125,0.006839752197265625,-0.04278564453125,-0.0036640167236328125,-0.0016813278198242188,-0.021728515625,-0.00609588623046875,0.00942230224609375,0.007396697998046875,-0.0019893646240234375,-0.026763916015625,0.01226806640625,-0.01059722900390625,0.01070404052734375,0.03143310546875,-0.03173828125,0.01311492919921875,-0.006374359130859375,0.00009942054748535156,-0.0008573532104492188,-0.00897216796875,0.012298583984375,-0.043701171875,0.01629638671875,-0.0178375244140625,-0.036346435546875,-0.0254058837890625,0.020904541015625,-0.00910186767578125,0.005573272705078125,0.0287322998046875,-0.0009493827819824219,0.004749298095703125,0.0036640167236328125,0.014129638671875,0.015716552734375,-0.02001953125,0.044769287109375,0.036529541015625,-0.0246734619140625,0.040130615234375,-0.0032634735107421875,0.02801513671875,0.027679443359375,0.021514892578125,-0.031341552734375,0.00008475780487060547,0.005588531494140625,0.0323486328125,0.0233306884765625,0.021148681640625,0.00443267822265625,-0.0022029876708984375,0.017120361328125,-0.01483154296875,-0.00797271728515625,-0.016082763671875,-0.0169677734375,0.01947021484375,0.002803802490234375,0.04681396484375,0.00951385498046875,0.03045654296875,0.042999267578125,0.0122222900390625,0.00016617774963378906,0.0208740234375,-0.0182342529296875,0.0048675537109375,0.0117034912109375,-0.04998779296875,-0.034759521484375,0.0163116455078125,-0.041229248046875,0.0294189453125,-0.0301361083984375,-0.00640106201171875,0.022247314453125,-0.0217132568359375,0.0018625259399414062,0.01264190673828125,-0.004497528076171875,-0.00457763671875,-0.01404571533203125,0.001888275146484375,-0.0220947265625,-0.02508544921875,-0.0487060546875,-0.0276336669921875,0.00534820556640625,-0.026947021484375,0.0029811859130859375,-0.0010423660278320312,-0.0101470947265625,-0.032012939453125,0.00011336803436279297,-0.0113677978515625,-0.014129638671875,0.01849365234375,0.019744873046875,-0.00754547119140625,-0.00614166259765625,-0.00258636474609375,0.021728515625,-0.005214691162109375,-0.01702880859375,-0.0033111572265625,0.00809478759765625,0.0265960693359375,-0.036163330078125,-0.03936767578125,-0.03582763671875,-0.0018854141235351562,0.032958984375,0.0234527587890625,0.00417327880859375,0.03802490234375,-0.01161956787109375,-0.0234527587890625,0.0006670951843261719,-0.0158538818359375,-0.01288604736328125,0.03436279296875,-0.0300140380859375,-0.034698486328125,0.0411376953125,-0.0155181884765625,-0.0128326416015625,0.013641357421875,0.028228759765625,-0.01078033447265625,0.00982666015625,-0.0221099853515625,0.00821685791015625,-0.0007586479187011719,0.003948211669921875,-0.0113372802734375,-0.01158905029296875,0.0172882080078125,-0.006893157958984375,0.019775390625,0.0084991455078125,0.01800537109375,-0.01097869873046875,-0.004604339599609375,0.01312255859375,-0.042877197265625,-0.0106658935546875,-0.0282135009765625,-0.01381683349609375,-0.0093841552734375,0.021026611328125,0.003513336181640625,0.0019588470458984375,0.0338134765625,0.006908416748046875,-0.01270294189453125,-0.00402069091796875,0.00243377685546875,0.002719879150390625,-0.019866943359375,-0.0008406639099121094,0.02197265625,0.0229339599609375,0.019805908203125,0.0142974853515625,0.035247802734375,0.035797119140625,0.0002448558807373047,0.011474609375,-0.045074462890625,0.0279693603515625,-0.0017042160034179688,-0.0060882568359375,-0.022186279296875,-0.002803802490234375,-0.0248565673828125,-0.0167083740234375,0.019287109375,0.0128021240234375,0.01568603515625,-0.0264739990234375,-0.036865234375,-0.0038852691650390625,-0.005504608154296875,-0.014007568359375,0.00995635986328125,0.0019426345825195312,0.018280029296875,0.032684326171875,-0.0225830078125,-0.031890869140625,0.0236053466796875,0.053070068359375,-0.007720947265625,-0.005496978759765625,-0.006900787353515625,0.03515625,0.0122833251953125,0.01276397705078125,0.021392822265625,0.012725830078125,0.006114959716796875,-0.0279693603515625,0.03326416015625,0.00167083740234375,-0.0110931396484375,-0.0012369155883789062,-0.0118255615234375,-0.01224517822265625,0.022216796875,0.013671875,-0.01036834716796875,-0.008026123046875,0.0189208984375,0.004741668701171875,0.00003343820571899414,-0.006473541259765625,-0.00606536865234375,-0.0047454833984375,0.0036220550537109375,-0.0088653564453125,-0.00199127197265625,0.00016117095947265625,-0.004810333251953125,0.00830078125,-0.029876708984375,-0.006061553955078125,0.0238037109375,-0.007564544677734375,-0.006984710693359375,-0.00673675537109375,0.0275726318359375,-0.0091400146484375,0.0003058910369873047,-0.00504302978515625,0.0026721954345703125,-0.00811767578125,0.0208587646484375,-0.01297760009765625,0.020721435546875,0.016510009765625,-0.0243988037109375,-0.006465911865234375,0.0018606185913085938,0.0184326171875,0.04205322265625,-0.0080108642578125,-0.035858154296875,-0.01149749755859375,0.00318145751953125,0.0194244384765625,-0.000025033950805664062,0.054290771484375,-0.0176849365234375,-0.0288543701171875,0.005374908447265625,0.0220184326171875,0.016998291015625,0.00682830810546875,-0.04229736328125,0.0218963623046875,-0.0150299072265625,0.0157623291015625,0.00959014892578125,0.0047607421875,0.0001246929168701172,-0.0003323554992675781,0.0159912109375,-0.0091094970703125,0.033599853515625,0.024017333984375,-0.0003039836883544922,0.018157958984375,0.03076171875,-0.038055419921875,0.0031795501708984375,0.010467529296875,-0.037109375,0.002857208251953125,-0.00800323486328125,-0.0169830322265625,-0.0245513916015625,0.0310516357421875,0.0012063980102539062,0.0185546875,0.0182647705078125,-0.006214141845703125,-0.024261474609375,-0.000576019287109375,-0.020233154296875,-0.044647216796875,0.0019817352294921875,0.0242919921875,-0.002895355224609375,0.0054931640625,-0.0023193359375,0.0035991668701171875,-0.0164947509765625,-0.00492095947265625,-0.026885986328125,-0.0196990966796875,0.0245208740234375,"019dcdf3-df7e-70dd-ba04-801be7e72c7d","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%2Fp5bl1ap8ran4lh39r6v8.png",false,true,"2026-04-27T06:46:57.000Z","how-to-safely-allow-inline-scripts-without-breaking-security-with-csp-nonce","019d6bd6-7fe0-7244-80dc-9a4e8751886a","Jakub Andrzejewski","jakub-andrzejewski","rss","https:\u002F\u002Fdev.to\u002Fjacobandrewsky","This article discusses how to implement Content Security Policy (CSP) nonce to safely allow inline scripts in web applications without compromising security. It explains the challenges posed by CSP, particularly in SSR frameworks like Nuxt, and provides a step-by-step guide on generating and using nonces effectively, including how the nuxt-security module simplifies this process.","How to Safely Allow Inline Scripts Without Breaking Security with CSP Nonce","2026-06-10T14:35:13.934Z","https:\u002F\u002Fdev.to\u002Fjacobandrewsky\u002Fhow-to-safely-allow-inline-scripts-without-breaking-security-with-csp-nonce-3a2j",{"clickCount":1394,"viewCount":1395},1,13,[1397,1406,1415],{"id":1398,"image":1399,"publishedAt":1400,"slug":1401,"sourceName":1402,"summary":1403,"title":1404,"url":1405},"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":1407,"image":1408,"publishedAt":1409,"slug":1410,"sourceName":1411,"summary":1412,"title":1413,"url":1414},"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":1416,"image":1417,"publishedAt":1418,"slug":1419,"sourceName":1420,"summary":1421,"title":1422,"url":1423},"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",[1425,1429,1432],{"color":1426,"id":1427,"name":1428,"slug":1428},"#10b981","019d6bd8-ca89-735e-a52a-ee53a80a77a9","ssr",{"color":1426,"id":1430,"name":1431,"slug":1431},"019d6bd8-fad3-70a9-a74d-ab96e3a2f45d","nuxt",{"color":1426,"id":1433,"name":1434,"slug":1434},"019dcdf3-fc84-73aa-a0be-6b7196c5a2e9","security",{"confirmedCount":1436},409]