[{"data":1,"prerenderedAt":1824},["ShallowReactive",2],{"page:\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers":3,"all-docs-nav":1282},{"id":4,"title":5,"body":6,"breadcrumb":1257,"dateModified":1267,"datePublished":1267,"description":1268,"extension":1269,"faq":1270,"meta":1275,"navigation":1276,"path":1277,"seo":1278,"slug":12,"stem":1279,"type":1280,"__hash__":1281},"content\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers\u002Findex.md","Netlify Functions vs Cloudflare Workers",{"type":7,"value":8,"toc":1239},"minimark",[9,13,17,36,41,61,65,76,309,452,470,474,477,571,693,696,700,804,807,811,826,829,932,936,939,1050,1057,1061,1064,1094,1097,1101,1153,1157,1160,1164,1169,1172,1176,1179,1183,1186,1190,1193,1197,1235],[10,11,5],"h1",{"id":12},"netlify-functions-vs-cloudflare-workers",[14,15,16],"p",{},"Teams choosing a host for a static site increasingly choose a function platform at the same time, because the form handler, API proxy and auth gate ship in the same repository and deploy with the pages. Netlify and Cloudflare are the two most common choices, and they take opposite approaches: Netlify Functions are Node.js on AWS Lambda in a single region (with Deno-based Edge Functions alongside), while Cloudflare Workers are V8 isolates running at every Cloudflare location.",[14,18,19,20,25,26,30,31,35],{},"This comparison implements the same three functions on both — a contact form handler, a cached GitHub API proxy and a JWT auth gate — and measures cold starts, latency from four continents, developer experience, limits and cost. The broader role of functions is covered in ",[21,22,24],"a",{"href":23},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002F","Serverless Functions for Static Sites","; the hosting side is in ",[21,27,29],{"href":28},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002F","Netlify vs Vercel Deployment Strategies"," and ",[21,32,34],{"href":33},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002F","Cloudflare Pages Edge Caching Setup",".",[37,38,40],"h2",{"id":39},"prerequisites","Prerequisites",[42,43,44,48,58],"ul",{},[45,46,47],"li",{},"A static site deployable to both hosts (any generator works).",[45,49,50,51,30,55,35],{},"Accounts on both platforms, and their CLIs: ",[52,53,54],"code",{},"netlify-cli",[52,56,57],{},"wrangler",[45,59,60],{},"A way to measure latency from several regions — WebPageTest, Checkly or a set of small VMs.",[37,62,64],{"id":63},"the-same-handler-two-shapes","The Same Handler, Two Shapes",[14,66,67,68,71,72,75],{},"Both platforms now accept a web-standard ",[52,69,70],{},"Request"," and return a ",[52,73,74],{},"Response",", so the core logic ports almost unchanged:",[77,78,83],"pre",{"className":79,"code":80,"language":81,"meta":82,"style":82},"language-js shiki shiki-themes github-light github-dark","\u002F\u002F netlify\u002Ffunctions\u002Freleases.mjs\nexport default async (req, context) => {\n  const res = await fetch('https:\u002F\u002Fapi.github.com\u002Frepos\u002Facme\u002Fcli\u002Freleases?per_page=5', {\n    headers: { authorization: `Bearer ${Netlify.env.get('GH_TOKEN')}`, 'user-agent': 'docs' } });\n  const data = (await res.json()).map((r) => ({ tag: r.tag_name, date: r.published_at }));\n  return Response.json(data, { headers: { 'cache-control': 'public, max-age=300', 'netlify-cdn-cache-control': 'public, s-maxage=300' } });\n};\nexport const config = { path: '\u002Fapi\u002Freleases' };\n","js","",[52,84,85,94,130,160,207,247,281,287],{"__ignoreMap":82},[86,87,90],"span",{"class":88,"line":89},"line",1,[86,91,93],{"class":92},"sJ8bj","\u002F\u002F netlify\u002Ffunctions\u002Freleases.mjs\n",[86,95,97,101,104,107,111,115,118,121,124,127],{"class":88,"line":96},2,[86,98,100],{"class":99},"szBVR","export",[86,102,103],{"class":99}," default",[86,105,106],{"class":99}," async",[86,108,110],{"class":109},"sVt8B"," (",[86,112,114],{"class":113},"s4XuR","req",[86,116,117],{"class":109},", ",[86,119,120],{"class":113},"context",[86,122,123],{"class":109},") ",[86,125,126],{"class":99},"=>",[86,128,129],{"class":109}," {\n",[86,131,133,136,140,143,146,150,153,157],{"class":88,"line":132},3,[86,134,135],{"class":99},"  const",[86,137,139],{"class":138},"sj4cs"," res",[86,141,142],{"class":99}," =",[86,144,145],{"class":99}," await",[86,147,149],{"class":148},"sScJk"," fetch",[86,151,152],{"class":109},"(",[86,154,156],{"class":155},"sZZnC","'https:\u002F\u002Fapi.github.com\u002Frepos\u002Facme\u002Fcli\u002Freleases?per_page=5'",[86,158,159],{"class":109},", {\n",[86,161,163,166,169,172,174,177,179,182,184,187,190,193,195,198,201,204],{"class":88,"line":162},4,[86,164,165],{"class":109},"    headers: { authorization: ",[86,167,168],{"class":155},"`Bearer ${",[86,170,171],{"class":109},"Netlify",[86,173,35],{"class":155},[86,175,176],{"class":109},"env",[86,178,35],{"class":155},[86,180,181],{"class":148},"get",[86,183,152],{"class":155},[86,185,186],{"class":155},"'GH_TOKEN'",[86,188,189],{"class":155},")",[86,191,192],{"class":155},"}`",[86,194,117],{"class":109},[86,196,197],{"class":155},"'user-agent'",[86,199,200],{"class":109},": ",[86,202,203],{"class":155},"'docs'",[86,205,206],{"class":109}," } });\n",[86,208,210,212,215,217,219,222,225,228,231,234,237,240,242,244],{"class":88,"line":209},5,[86,211,135],{"class":99},[86,213,214],{"class":138}," data",[86,216,142],{"class":99},[86,218,110],{"class":109},[86,220,221],{"class":99},"await",[86,223,224],{"class":109}," res.",[86,226,227],{"class":148},"json",[86,229,230],{"class":109},"()).",[86,232,233],{"class":148},"map",[86,235,236],{"class":109},"((",[86,238,239],{"class":113},"r",[86,241,123],{"class":109},[86,243,126],{"class":99},[86,245,246],{"class":109}," ({ tag: r.tag_name, date: r.published_at }));\n",[86,248,250,253,256,258,261,264,266,269,271,274,276,279],{"class":88,"line":249},6,[86,251,252],{"class":99},"  return",[86,254,255],{"class":109}," Response.",[86,257,227],{"class":148},[86,259,260],{"class":109},"(data, { headers: { ",[86,262,263],{"class":155},"'cache-control'",[86,265,200],{"class":109},[86,267,268],{"class":155},"'public, max-age=300'",[86,270,117],{"class":109},[86,272,273],{"class":155},"'netlify-cdn-cache-control'",[86,275,200],{"class":109},[86,277,278],{"class":155},"'public, s-maxage=300'",[86,280,206],{"class":109},[86,282,284],{"class":88,"line":283},7,[86,285,286],{"class":109},"};\n",[86,288,290,292,295,298,300,303,306],{"class":88,"line":289},8,[86,291,100],{"class":99},[86,293,294],{"class":99}," const",[86,296,297],{"class":138}," config",[86,299,142],{"class":99},[86,301,302],{"class":109}," { path: ",[86,304,305],{"class":155},"'\u002Fapi\u002Freleases'",[86,307,308],{"class":109}," };\n",[77,310,312],{"className":79,"code":311,"language":81,"meta":82,"style":82},"\u002F\u002F functions\u002Fapi\u002Freleases.js (Cloudflare Pages Function)\nexport async function onRequestGet({ env }) {\n  const res = await fetch('https:\u002F\u002Fapi.github.com\u002Frepos\u002Facme\u002Fcli\u002Freleases?per_page=5', {\n    headers: { authorization: `Bearer ${env.GH_TOKEN}`, 'user-agent': 'docs' },\n    cf: { cacheTtl: 300, cacheEverything: true } });\n  const data = (await res.json()).map((r) => ({ tag: r.tag_name, date: r.published_at }));\n  return Response.json(data, { headers: { 'cache-control': 'public, max-age=300' } });\n}\n",[52,313,314,319,339,357,383,399,429,447],{"__ignoreMap":82},[86,315,316],{"class":88,"line":89},[86,317,318],{"class":92},"\u002F\u002F functions\u002Fapi\u002Freleases.js (Cloudflare Pages Function)\n",[86,320,321,323,325,328,331,334,336],{"class":88,"line":96},[86,322,100],{"class":99},[86,324,106],{"class":99},[86,326,327],{"class":99}," function",[86,329,330],{"class":148}," onRequestGet",[86,332,333],{"class":109},"({ ",[86,335,176],{"class":113},[86,337,338],{"class":109}," }) {\n",[86,340,341,343,345,347,349,351,353,355],{"class":88,"line":132},[86,342,135],{"class":99},[86,344,139],{"class":138},[86,346,142],{"class":99},[86,348,145],{"class":99},[86,350,149],{"class":148},[86,352,152],{"class":109},[86,354,156],{"class":155},[86,356,159],{"class":109},[86,358,359,361,363,365,367,370,372,374,376,378,380],{"class":88,"line":162},[86,360,165],{"class":109},[86,362,168],{"class":155},[86,364,176],{"class":109},[86,366,35],{"class":155},[86,368,369],{"class":138},"GH_TOKEN",[86,371,192],{"class":155},[86,373,117],{"class":109},[86,375,197],{"class":155},[86,377,200],{"class":109},[86,379,203],{"class":155},[86,381,382],{"class":109}," },\n",[86,384,385,388,391,394,397],{"class":88,"line":209},[86,386,387],{"class":109},"    cf: { cacheTtl: ",[86,389,390],{"class":138},"300",[86,392,393],{"class":109},", cacheEverything: ",[86,395,396],{"class":138},"true",[86,398,206],{"class":109},[86,400,401,403,405,407,409,411,413,415,417,419,421,423,425,427],{"class":88,"line":249},[86,402,135],{"class":99},[86,404,214],{"class":138},[86,406,142],{"class":99},[86,408,110],{"class":109},[86,410,221],{"class":99},[86,412,224],{"class":109},[86,414,227],{"class":148},[86,416,230],{"class":109},[86,418,233],{"class":148},[86,420,236],{"class":109},[86,422,239],{"class":113},[86,424,123],{"class":109},[86,426,126],{"class":99},[86,428,246],{"class":109},[86,430,431,433,435,437,439,441,443,445],{"class":88,"line":283},[86,432,252],{"class":99},[86,434,255],{"class":109},[86,436,227],{"class":148},[86,438,260],{"class":109},[86,440,263],{"class":155},[86,442,200],{"class":109},[86,444,268],{"class":155},[86,446,206],{"class":109},[86,448,449],{"class":88,"line":289},[86,450,451],{"class":109},"}\n",[14,453,454,455,458,459,461,462,465,466,469],{},"The differences are in the edges: how environment variables are read (",[52,456,457],{},"Netlify.env"," versus the ",[52,460,176],{}," argument), how caching is expressed (a CDN cache header on Netlify, the ",[52,463,464],{},"cf"," fetch options or the Cache API on Cloudflare), and how routes are declared (a ",[52,467,468],{},"config.path"," export versus the file path).",[37,471,473],{"id":472},"cold-starts-and-latency","Cold Starts and Latency",[14,475,476],{},"Each function was called from four locations every minute for a week, with traffic low enough that many calls hit a cold instance.",[478,479,480,499],"table",{},[481,482,483],"thead",{},[484,485,486,490,493,496],"tr",{},[487,488,489],"th",{},"Measure (contact handler)",[487,491,492],{},"Netlify Function (us-east-2)",[487,494,495],{},"Netlify Edge Function",[487,497,498],{},"Cloudflare Worker",[500,501,502,517,531,545,558],"tbody",{},[484,503,504,508,511,514],{},[505,506,507],"td",{},"Cold start overhead, p50",[505,509,510],{},"310 ms",[505,512,513],{},"14 ms",[505,515,516],{},"4 ms",[484,518,519,522,525,528],{},[505,520,521],{},"Warm response, Virginia",[505,523,524],{},"41 ms",[505,526,527],{},"29 ms",[505,529,530],{},"21 ms",[484,532,533,536,539,542],{},[505,534,535],{},"Warm response, Frankfurt",[505,537,538],{},"128 ms",[505,540,541],{},"33 ms",[505,543,544],{},"23 ms",[484,546,547,550,553,555],{},[505,548,549],{},"Warm response, São Paulo",[505,551,552],{},"172 ms",[505,554,524],{},[505,556,557],{},"27 ms",[484,559,560,563,566,569],{},[505,561,562],{},"Warm response, Sydney",[505,564,565],{},"236 ms",[505,567,568],{},"44 ms",[505,570,527],{},[572,573,574,689],"figure",{},[575,576,583,584,583,588,583,592,583,599],"svg",{"viewBox":577,"role":578,"ariaLabelledBy":579,"xmlns":582},"0 0 760 290","img",[580,581],"nvc-lat-title","nvc-lat-desc","http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","\n  ",[585,586,587],"title",{"id":580},"Warm response time by reader location",[589,590,591],"desc",{"id":581},"Lines across four locations. The regional Netlify Function rises from 41 milliseconds in Virginia to 236 in Sydney. Netlify Edge Functions stay between 29 and 44. Cloudflare Workers stay between 21 and 29.",[593,594],"rect",{"x":595,"y":595,"width":596,"height":597,"fill":598},"0","760","290","#ffffff",[600,601,603,604,603,612,603,619,603,622,603,627,603,631,603,635,603,641,603,645,603,649,603,653,603,660,603,664,603,668,603,675,603,680,603,684,583],"g",{"style":602},"font-family:system-ui, sans-serif;font-size:12px","\n    ",[605,606,611],"text",{"x":607,"y":608,"fill":609,"style":610},"380","28","#1f2937","font-size:16px;font-weight:700;text-anchor:middle","Warm response (ms) by reader location",[88,613],{"x1":614,"y1":615,"x2":616,"y2":615,"stroke":617,"style":618},"80","240","720","#556071","stroke-width:1.5px",[88,620],{"x1":614,"y1":621,"x2":614,"y2":615,"stroke":617,"style":618},"50",[605,623,595],{"x":624,"y":625,"fill":617,"style":626},"72","244","font-size:11px;text-anchor:end",[605,628,630],{"x":624,"y":629,"fill":617,"style":626},"148","125",[605,632,634],{"x":624,"y":633,"fill":617,"style":626},"54","250",[605,636,640],{"x":637,"y":638,"fill":617,"style":639},"150","258","font-size:11px;text-anchor:middle","Virginia",[605,642,644],{"x":643,"y":638,"fill":617,"style":639},"330","Frankfurt",[605,646,648],{"x":647,"y":638,"fill":617,"style":639},"510","São Paulo",[605,650,652],{"x":651,"y":638,"fill":617,"style":639},"690","Sydney",[654,655],"polyline",{"points":656,"fill":657,"stroke":658,"style":659},"150,209 330,143 510,109 690,61","none","#1982c4","stroke-width:2.5px",[654,661],{"points":662,"fill":657,"stroke":663,"style":659},"150,218 330,215 510,209 690,207","#5a8a16",[654,665],{"points":666,"fill":657,"stroke":667,"style":659},"150,224 330,223 510,219 690,218","#6a4c93",[605,669,674],{"x":670,"y":671,"fill":672,"style":673},"600","76","#166a9e","font-size:11px;font-weight:700","Netlify Function (regional)",[605,676,679],{"x":670,"y":677,"fill":678,"style":673},"198","#3f6410","Netlify Edge",[605,681,498],{"x":643,"y":682,"fill":667,"style":683},"208","font-size:11px;font-weight:700;text-anchor:middle",[605,685,688],{"x":686,"y":687,"fill":617,"style":639},"400","280","p50 over one week, one call per minute per location",[690,691,692],"figcaption",{},"The gap is geography, not code: edge runtimes answer from near the reader, regional functions from one data centre.",[14,694,695],{},"The practical conclusion is that Netlify Edge Functions and Workers are close, and both are far ahead of regional functions for globally distributed readers. On Netlify, the choice between Functions and Edge Functions matters more than the choice between Netlify and Cloudflare.",[37,697,699],{"id":698},"limits-and-runtime-compatibility","Limits and Runtime Compatibility",[478,701,702,717],{},[481,703,704],{},[484,705,706,709,712,714],{},[487,707,708],{},"Limit",[487,710,711],{},"Netlify Function",[487,713,495],{},[487,715,716],{},"Cloudflare Worker (paid)",[500,718,719,736,750,764,778,791],{},[484,720,721,724,727,730],{},[505,722,723],{},"Runtime",[505,725,726],{},"Node.js 20",[505,728,729],{},"Deno",[505,731,732,733],{},"V8 isolate, web APIs + ",[52,734,735],{},"nodejs_compat",[484,737,738,741,744,747],{},[505,739,740],{},"Max execution",[505,742,743],{},"10 s (26 s background: 15 min)",[505,745,746],{},"50 ms CPU",[505,748,749],{},"30 s CPU (configurable up to 5 min)",[484,751,752,755,758,761],{},[505,753,754],{},"Memory",[505,756,757],{},"1,024 MB",[505,759,760],{},"512 MB",[505,762,763],{},"128 MB",[484,765,766,769,772,775],{},[505,767,768],{},"Bundle size",[505,770,771],{},"50 MB zipped",[505,773,774],{},"20 MB",[505,776,777],{},"10 MB compressed",[484,779,780,783,786,789],{},[505,781,782],{},"Native npm modules",[505,784,785],{},"yes",[505,787,788],{},"no",[505,790,788],{},[484,792,793,796,799,801],{},[505,794,795],{},"Built-in storage",[505,797,798],{},"Netlify Blobs",[505,800,798],{},[505,802,803],{},"KV, D1, R2, Durable Objects, Queues",[14,805,806],{},"For the three static-site functions tested, every limit was far away. Limits matter when a function does heavy work: generating PDFs, resizing images with a native library, or running a headless browser. Those belong in a regional Node function or a background job regardless of platform.",[37,808,810],{"id":809},"developer-experience","Developer Experience",[14,812,813,814,817,818,821,822,825],{},"Both CLIs run the whole site locally with functions. ",[52,815,816],{},"netlify dev"," proxies the generator's dev server and serves functions on the same port, including redirects and headers from ",[52,819,820],{},"netlify.toml",". ",[52,823,824],{},"wrangler pages dev"," serves the built output with functions and local simulations of D1, KV and R2; for a generator with its own dev server, running both and proxying is a small extra step.",[14,827,828],{},"Deploy previews behave the same on both: every pull request deploys pages and functions together at a unique URL, so the form handler in a pull request is testable before merge. Environment variables can be scoped to production and previews on both platforms; Cloudflare distinguishes them with separate secret sets per environment, Netlify with deploy contexts.",[572,830,831,929],{},[575,832,583,837,583,840,583,843,583,845],{"viewBox":833,"role":578,"ariaLabelledBy":834,"xmlns":582},"0 0 760 280",[835,836],"nvc-fit-title","nvc-fit-desc",[585,838,839],{"id":835},"Which function type fits which job",[589,841,842],{"id":836},"A matrix of five static-site jobs against three runtimes. Contact form, API proxy and auth gate fit all three, best on edge runtimes for latency. On-demand image resizing with a native library and PDF generation fit only the regional Node function.",[593,844],{"x":595,"y":595,"width":596,"height":687,"fill":598},[600,846,603,847,603,850,603,855,603,858,603,862,603,867,603,872,603,876,603,879,603,881,603,885,603,887,603,889,603,891,603,895,603,899,603,901,603,903,603,907,603,909,603,911,603,914,603,918,603,920,603,922,603,925,583],{"style":602},[605,848,849],{"x":607,"y":608,"fill":609,"style":610},"Match the job to the runtime",[605,851,711],{"x":852,"y":853,"fill":609,"style":854},"350","62","font-weight:700;text-anchor:middle",[605,856,679],{"x":857,"y":853,"fill":609,"style":854},"500",[605,859,861],{"x":860,"y":853,"fill":609,"style":854},"650","CF Worker",[88,863],{"x1":864,"y1":624,"x2":865,"y2":624,"stroke":866,"style":618},"30","730","#d9e2ef",[605,868,871],{"x":869,"y":870,"fill":609},"40","100","contact form",[605,873,875],{"x":852,"y":870,"fill":874,"style":854},"#8a6d0f","works",[605,877,878],{"x":857,"y":870,"fill":678,"style":854},"best",[605,880,878],{"x":860,"y":870,"fill":678,"style":854},[605,882,884],{"x":869,"y":883,"fill":609},"134","cached API proxy",[605,886,875],{"x":852,"y":883,"fill":874,"style":854},[605,888,878],{"x":857,"y":883,"fill":678,"style":854},[605,890,878],{"x":860,"y":883,"fill":678,"style":854},[605,892,894],{"x":869,"y":893,"fill":609},"168","auth gate on every request",[605,896,898],{"x":852,"y":893,"fill":897,"style":854},"#b32b30","too slow",[605,900,878],{"x":857,"y":893,"fill":678,"style":854},[605,902,878],{"x":860,"y":893,"fill":678,"style":854},[605,904,906],{"x":869,"y":905,"fill":609},"202","image resize (native lib)",[605,908,878],{"x":852,"y":905,"fill":678,"style":854},[605,910,788],{"x":857,"y":905,"fill":897,"style":854},[605,912,913],{"x":860,"y":905,"fill":874,"style":854},"Images API",[605,915,917],{"x":869,"y":916,"fill":609},"236","PDF generation",[605,919,878],{"x":852,"y":916,"fill":678,"style":854},[605,921,788],{"x":857,"y":916,"fill":897,"style":854},[605,923,924],{"x":860,"y":916,"fill":874,"style":854},"Browser Rendering",[605,926,928],{"x":607,"y":927,"fill":617,"style":639},"266","Cloudflare covers heavy jobs with separate products rather than inside a Worker",[690,930,931],{},"Anything that runs on every page request belongs at the edge; anything heavy belongs in a regional function or a dedicated service.",[37,933,935],{"id":934},"storage-and-integrations","Storage and Integrations",[14,937,938],{},"Functions rarely stand alone: the contact handler needs somewhere to store messages, the auth gate a session store, the proxy a cache. Cloudflare's advantage is breadth of built-in bindings — KV for sessions and flags, D1 for relational data, R2 for files, Durable Objects for counters and rate limits, Queues for background work — all addressable from a Worker without network credentials. Netlify offers Netlify Blobs for key-value and file storage and relies on external services (a hosted Postgres, a queue provider) for the rest. For a contact form, Blobs is enough; for anything relational, Cloudflare needs fewer moving parts.",[572,940,941,1047],{},[575,942,583,947,583,950,583,953,583,955],{"viewBox":943,"role":578,"ariaLabelledBy":944,"xmlns":582},"0 0 760 250",[945,946],"nvc-store-title","nvc-store-desc",[585,948,949],{"id":945},"Storage reachable from each platform's functions",[589,951,952],{"id":946},"A Netlify function reaches Netlify Blobs directly and external services such as a hosted database and a queue over the network with credentials. A Cloudflare Worker reaches KV, D1, R2, Durable Objects and Queues as local bindings without network credentials.",[593,954],{"x":595,"y":595,"width":596,"height":634,"fill":598},[600,956,603,957,603,960,603,966,603,970,603,979,603,985,603,988,603,992,603,995,603,999,603,1003,603,1006,603,1010,603,1014,603,1018,603,1020,603,1024,603,1027,603,1031,603,1034,603,1038,603,1040,603,1044,583],{"style":602},[605,958,959],{"x":607,"y":608,"fill":609,"style":610},"What a function can reach without leaving the platform",[593,961],{"x":864,"y":633,"width":962,"height":963,"rx":964,"fill":658,"opacity":965,"stroke":658,"style":618},"340","170","12","0.06",[605,967,171],{"x":968,"y":969,"fill":609,"style":854},"200","78",[593,971],{"x":621,"y":972,"width":973,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},"96","130","36","6","#8ac926","0.2","stroke-width:1px",[605,980,984],{"x":981,"y":982,"fill":609,"style":983},"115","119","text-anchor:middle","Blobs",[593,986],{"x":968,"y":972,"width":637,"height":974,"rx":975,"fill":987,"stroke":866,"style":978},"#f8fafc",[605,989,991],{"x":990,"y":982,"fill":617,"style":983},"275","external DB (network)",[593,993],{"x":968,"y":994,"width":637,"height":974,"rx":975,"fill":987,"stroke":866,"style":978},"144",[605,996,998],{"x":990,"y":997,"fill":617,"style":983},"167","external queue",[605,1000,1002],{"x":968,"y":1001,"fill":617,"style":639},"206","1 built-in store + services you run elsewhere",[593,1004],{"x":1005,"y":633,"width":962,"height":963,"rx":964,"fill":667,"opacity":965,"stroke":667,"style":618},"390",[605,1007,1009],{"x":1008,"y":969,"fill":609,"style":854},"560","Cloudflare",[593,1011],{"x":1012,"y":972,"width":1013,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},"410","90",[605,1015,1017],{"x":1016,"y":982,"fill":609,"style":983},"455","KV",[593,1019],{"x":647,"y":972,"width":1013,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},[605,1021,1023],{"x":1022,"y":982,"fill":609,"style":983},"555","D1",[593,1025],{"x":1026,"y":972,"width":870,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},"610",[605,1028,1030],{"x":1029,"y":982,"fill":609,"style":983},"660","R2",[593,1032],{"x":1012,"y":994,"width":1033,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},"140",[605,1035,1037],{"x":1036,"y":997,"fill":609,"style":983},"480","Durable Objects",[593,1039],{"x":1008,"y":994,"width":637,"height":974,"rx":975,"fill":976,"opacity":977,"stroke":663,"style":978},[605,1041,1043],{"x":1042,"y":997,"fill":609,"style":983},"635","Queues",[605,1045,1046],{"x":1008,"y":1001,"fill":617,"style":639},"bindings: no credentials, no extra network hop",[690,1048,1049],{},"Bindings remove a class of secrets from the function entirely: there is no database password to leak.",[14,1051,1052,1053,1056],{},"Bindings also simplify previews. On Cloudflare, a preview environment can bind to a separate D1 database and KV namespace declared in ",[52,1054,1055],{},"wrangler.toml",", so previews write to their own data without code changes. On Netlify, the same isolation needs separate credentials per deploy context for each external service.",[37,1058,1060],{"id":1059},"measured-cost","Measured Cost",[14,1062,1063],{},"For the three functions at the traffic of a 1.2-million-page-view-a-month docs site (about 17,000 form and proxy invocations plus 90,000 auth-gate requests):",[478,1065,1066,1076],{},[481,1067,1068],{},[484,1069,1070,1073],{},[487,1071,1072],{},"Platform",[487,1074,1075],{},"Monthly cost",[500,1077,1078,1086],{},[484,1079,1080,1083],{},[505,1081,1082],{},"Netlify (Pro plan, functions within included allowance)",[505,1084,1085],{},"included in plan",[484,1087,1088,1091],{},[505,1089,1090],{},"Cloudflare (Workers Paid for rate-limit and D1 headroom)",[505,1092,1093],{},"5 USD",[14,1095,1096],{},"At this scale cost does not decide anything. It becomes a factor at tens of millions of function invocations, where per-invocation pricing differs more and edge caching of function responses matters more than the headline rate.",[37,1098,1100],{"id":1099},"pitfalls-rollback","Pitfalls & Rollback",[42,1102,1103,1110,1116,1122,1137,1147],{},[45,1104,1105,1109],{},[1106,1107,1108],"strong",{},"Regional functions for per-request gates."," An auth check that adds 200 ms for distant readers on every page is a poor fit; use an edge runtime.",[45,1111,1112,1115],{},[1106,1113,1114],{},"Assuming npm compatibility on the edge."," Test packages under the edge runtime early; native modules and filesystem access fail.",[45,1117,1118,1121],{},[1106,1119,1120],{},"Different cache semantics."," Netlify's function cache header and Cloudflare's Cache API behave differently; test caching on each explicitly.",[45,1123,1124,1127,1128,117,1131,1133,1134,1136],{},[1106,1125,1126],{},"Porting environment access."," ",[52,1129,1130],{},"process.env",[52,1132,457],{}," and the ",[52,1135,176],{}," argument are not interchangeable; wrap access in one helper.",[45,1138,1139,1142,1143,1146],{},[1106,1140,1141],{},"Ignoring observability differences."," Netlify shows function logs per deploy in its dashboard; Workers stream logs with ",[52,1144,1145],{},"wrangler tail"," and persist them with Workers Logs. Decide where function errors will be read before the first incident.",[45,1148,1149,1152],{},[1106,1150,1151],{},"Rollback:"," functions deploy atomically with the site on both platforms, so rolling back a deploy rolls back functions too.",[37,1154,1156],{"id":1155},"conclusion","Conclusion",[14,1158,1159],{},"For the functions static sites typically need — forms, API proxies and auth gates — Cloudflare Workers and Netlify Edge Functions are both fast worldwide, start in milliseconds, and cost little; regional Netlify Functions are the outlier, adding up to 200 ms for distant readers. Choose the host for the whole workflow, then use its edge runtime for request-path code and reserve regional Node functions or dedicated services for heavy work.",[37,1161,1163],{"id":1162},"faq","FAQ",[1165,1166,1168],"h3",{"id":1167},"what-is-the-main-difference-between-netlify-functions-and-cloudflare-workers","What is the main difference between Netlify Functions and Cloudflare Workers?",[14,1170,1171],{},"Netlify Functions run full Node.js on AWS Lambda in one region by default, with Netlify Edge Functions available as a Deno-based edge option. Cloudflare Workers run in V8 isolates at every Cloudflare location. The result is that Workers start faster and respond faster to distant readers, while Netlify Functions support more of the Node ecosystem.",[1165,1173,1175],{"id":1174},"can-i-use-npm-packages-in-both","Can I use npm packages in both?",[14,1177,1178],{},"Netlify Functions support nearly any Node package, including native modules. Workers support packages that use web-standard APIs and a growing set of Node built-ins through the nodejs_compat flag; packages that need native binaries or the filesystem do not work.",[1165,1180,1182],{"id":1181},"which-is-cheaper-for-a-static-sites-functions","Which is cheaper for a static site's functions?",[14,1184,1185],{},"At the volumes typical for forms, proxies and auth checks, both are free or a few dollars a month. Workers' paid plan starts at 5 USD with generous included requests; Netlify includes function invocations in its plans and bills overages per invocation and compute time.",[1165,1187,1189],{"id":1188},"should-i-move-hosts-to-get-a-better-function-platform","Should I move hosts to get a better function platform?",[14,1191,1192],{},"Usually not for functions alone. Both platforms handle typical static-site functions well. Choose the host for the whole workflow — builds, previews, redirects, team features — and use its function platform.",[37,1194,1196],{"id":1195},"related","Related",[42,1198,1199,1207,1214,1221,1228],{},[45,1200,1201,1127,1204,1206],{},[1106,1202,1203],{},"Parent:",[21,1205,24],{"href":23}," — what functions static sites need.",[45,1208,1209,1213],{},[21,1210,1212],{"href":1211},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fadding-a-contact-form-with-cloudflare-workers\u002F","Adding a Contact Form with Cloudflare Workers"," — one of the three functions in full.",[45,1215,1216,1220],{},[21,1217,1219],{"href":1218},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fproxying-third-party-apis-from-an-edge-function\u002F","Proxying Third-Party APIs from an Edge Function"," — the proxy pattern in depth.",[45,1222,1223,1227],{},[21,1224,1226],{"href":1225},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fsetting-up-deploy-previews-on-netlify-for-every-pull-request\u002F","Setting Up Deploy Previews on Netlify for Every Pull Request"," — previews that include functions.",[45,1229,1230,1234],{},[21,1231,1233],{"href":1232},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fmigrating-from-cloudflare-pages-to-workers-static-assets\u002F","Migrating from Cloudflare Pages to Workers Static Assets"," — where Cloudflare's platform is heading.",[1236,1237,1238],"style",{},"html pre.shiki code .sJ8bj, html code.shiki .sJ8bj{--shiki-default:#6A737D;--shiki-dark:#6A737D}html pre.shiki code .szBVR, html code.shiki .szBVR{--shiki-default:#D73A49;--shiki-dark:#F97583}html pre.shiki code .sVt8B, html code.shiki .sVt8B{--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .s4XuR, html code.shiki .s4XuR{--shiki-default:#E36209;--shiki-dark:#FFAB70}html pre.shiki code .sj4cs, html code.shiki .sj4cs{--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sScJk, html code.shiki .sScJk{--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":82,"searchDepth":96,"depth":96,"links":1240},[1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1256],{"id":39,"depth":96,"text":40},{"id":63,"depth":96,"text":64},{"id":472,"depth":96,"text":473},{"id":698,"depth":96,"text":699},{"id":809,"depth":96,"text":810},{"id":934,"depth":96,"text":935},{"id":1059,"depth":96,"text":1060},{"id":1099,"depth":96,"text":1100},{"id":1155,"depth":96,"text":1156},{"id":1162,"depth":96,"text":1163,"children":1251},[1252,1253,1254,1255],{"id":1167,"depth":132,"text":1168},{"id":1174,"depth":132,"text":1175},{"id":1181,"depth":132,"text":1182},{"id":1188,"depth":132,"text":1189},{"id":1195,"depth":96,"text":1196},[1258,1261,1264,1265],{"name":1259,"item":1260},"Home","\u002F",{"name":1262,"item":1263},"Production-Ready Deployment & CI\u002FCD Workflows","\u002Fproduction-ready-deployment-cicd-workflows\u002F",{"name":24,"item":23},{"name":5,"item":1266},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers\u002F","2026-09-18","The same three functions on Netlify and Cloudflare, measured: cold starts, global latency, limits, local development, storage and cost for a static site.","md",[1271,1272,1273,1274],{"q":1168,"a":1171},{"q":1175,"a":1178},{"q":1182,"a":1185},{"q":1189,"a":1192},{},true,"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers",{"title":5,"description":1268},"production-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers\u002Findex","article","kH176pa52lYZZSiW13Q0CAl4fBF65HNZMvgHlSDnhkM",[1283,1286,1289,1292,1295,1298,1301,1304,1307,1310,1313,1316,1319,1322,1325,1328,1331,1334,1337,1340,1343,1346,1349,1352,1355,1358,1361,1364,1367,1370,1373,1376,1379,1382,1385,1388,1391,1394,1397,1400,1403,1406,1409,1412,1415,1418,1421,1424,1427,1430,1433,1436,1439,1442,1445,1448,1451,1454,1457,1460,1463,1466,1469,1472,1475,1478,1481,1484,1487,1490,1493,1496,1499,1502,1505,1508,1511,1514,1517,1520,1523,1526,1529,1532,1535,1538,1541,1544,1547,1550,1553,1556,1559,1562,1565,1568,1571,1574,1577,1580,1583,1586,1589,1592,1595,1598,1601,1604,1607,1610,1613,1616,1619,1622,1625,1628,1631,1633,1635,1638,1641,1644,1647,1650,1653,1656,1659,1662,1665,1668,1671,1674,1677,1680,1683,1686,1689,1692,1695,1698,1701,1704,1707,1710,1713,1716,1719,1721,1724,1727,1730,1733,1736,1739,1742,1745,1748,1751,1754,1757,1760,1763,1766,1769,1772,1775,1778,1781,1784,1787,1790,1793,1796,1799,1802,1805,1808,1811,1813,1816,1818,1819,1822],{"path":1284,"title":1285},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fastro-vs-eleventy-build-times-at-10000-pages","Astro vs Eleventy Build Times at 10,000 Pages",{"path":1287,"title":1288},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fchoosing-between-astro-and-eleventy-for-large-docs","Astro vs Eleventy for Large Docs (1000+ Pages)",{"path":1290,"title":1291},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fcontent-collections-vs-eleventy-data-cascade","Content Collections vs the Eleventy Data Cascade",{"path":1293,"title":1294},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites","Astro vs Eleventy for Documentation Sites",{"path":1296,"title":1297},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fshortcodes-vs-components-for-docs-authors","Shortcodes vs Components for Docs Authors",{"path":1299,"title":1300},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fsidebar-navigation-in-astro-and-eleventy","Sidebar Navigation in Astro and Eleventy",{"path":1302,"title":1303},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fcustomizing-starlight-without-forking-the-theme","Customizing Starlight Without Forking the Theme",{"path":1305,"title":1306},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation","Docusaurus vs Starlight for Product Documentation",{"path":1308,"title":1309},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress","Docs Frameworks: Docusaurus, Starlight and VitePress",{"path":1311,"title":1312},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmdx-vs-markdoc-for-docs-content","MDX vs Markdoc for Docs Content",{"path":1314,"title":1315},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmigrating-from-mkdocs-to-starlight","Migrating from MkDocs to Starlight",{"path":1317,"title":1318},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus","Versioned Documentation with Docusaurus",{"path":1320,"title":1321},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fvitepress-for-library-documentation","VitePress for Library Documentation",{"path":1323,"title":1324},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories\u002Fhow-to-benchmark-hugo-vs-astro-build-speeds","How to Benchmark Hugo vs Astro Build Speeds",{"path":1326,"title":1327},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories\u002Fhugo-partialcached-for-faster-builds","Hugo partialCached for Faster Builds",{"path":1329,"title":1330},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories","Hugo Build Times for Large Repositories",{"path":1332,"title":1333},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories\u002Fprofiling-hugo-templates-with-template-metrics","Profiling Hugo Templates With Template Metrics",{"path":1335,"title":1336},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories\u002Freducing-hugo-memory-usage-on-ci-runners","Reducing Hugo Memory Usage on CI Runners",{"path":1338,"title":1339},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories\u002Fspeeding-up-hugo-builds-with-render-hooks-and-caching","Speeding Up Hugo Builds with Render Hooks & Caching",{"path":1341,"title":1342},"\u002Fchoosing-the-right-static-site-generator-for-production","Choosing the Right Static Site Generator for Production",{"path":1344,"title":1345},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Feleventy-vs-jekyll-for-markdown-heavy-blogs","Eleventy vs Jekyll for Markdown-Heavy Blogs",{"path":1347,"title":1348},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem","Jekyll Plugin Ecosystem",{"path":1350,"title":1351},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Freplacing-jekyll-plugins-when-migrating-to-eleventy","Replacing Jekyll Plugins When Migrating to Eleventy",{"path":1353,"title":1354},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Frunning-jekyll-on-github-pages-without-plugins","Running Jekyll on GitHub Pages Without Plugins",{"path":1356,"title":1357},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fspeeding-up-slow-jekyll-builds","Speeding Up Slow Jekyll Builds",{"path":1359,"title":1360},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fupgrading-jekyll-and-ruby-versions-safely","Upgrading Jekyll and Ruby Versions Safely",{"path":1362,"title":1363},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fconverting-front-matter-at-scale-during-migration","Converting Front Matter at Scale During Migration",{"path":1365,"title":1366},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators","Migrating Between Static Site Generators",{"path":1368,"title":1369},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fkeeping-redirects-working-after-an-ssg-migration","Keeping Redirects Working After an SSG Migration",{"path":1371,"title":1372},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-a-docs-site-from-jekyll-to-hugo","Migrating a Docs Site From Jekyll to Hugo",{"path":1374,"title":1375},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-gatsby-to-astro","Migrating from Gatsby to Astro",{"path":1377,"title":1378},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-hugo-to-astro-without-breaking-urls","Migrating From Hugo to Astro Without Breaking URLs",{"path":1380,"title":1381},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator","Migrating WordPress to a Static Site Generator",{"path":1383,"title":1384},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fporting-shortcodes-and-includes-between-generators","Porting Shortcodes and Includes Between Generators",{"path":1386,"title":1387},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites\u002Fhandling-dynamic-routes-in-nextjs-static-export","Handling Dynamic Routes in Next.js Static Export",{"path":1389,"title":1390},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites","Next.js Static Export for Content Sites",{"path":1392,"title":1393},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites\u002Fmigrating-from-gatsby-to-nextjs-static-export","Migrating from Gatsby to Next.js Static Export",{"path":1395,"title":1396},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites\u002Fnextjs-app-router-static-export-limitations","Next.js App Router Static Export Limitations",{"path":1398,"title":1399},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites\u002Fnextjs-static-export-vs-astro-for-marketing-sites","Next.js Static Export vs Astro for Marketing",{"path":1401,"title":1402},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites\u002Foptimizing-images-in-nextjs-static-export","Optimizing Images in Next.js Static Export",{"path":1404,"title":1405},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fadding-pagefind-to-an-astro-site","Adding Pagefind to an Astro Site",{"path":1407,"title":1408},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fbuilding-a-lunr-index-at-build-time-in-eleventy","Building a Lunr Index at Build Time in Eleventy",{"path":1410,"title":1411},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites","Search for Static Sites",{"path":1413,"title":1414},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Findexing-hugo-sites-with-pagefind","Indexing Hugo Sites with Pagefind",{"path":1416,"title":1417},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fmultilingual-search-on-static-sites","Multilingual Search on Static Sites",{"path":1419,"title":1420},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fpagefind-vs-algolia-docsearch","Pagefind vs Algolia DocSearch",{"path":1422,"title":1423},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fsearch-index-size-budgets-for-large-docs","Search Index Size Budgets for Large Docs",{"path":1425,"title":1426},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fbest-ssg-for-technical-writers-without-coding-experience","Best SSG for Non-Developer Technical Writers",{"path":1428,"title":1429},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fchoosing-an-ssg-for-api-reference-documentation","Choosing an SSG for API Reference Documentation",{"path":1431,"title":1432},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults","Evaluating SSG Accessibility Defaults",{"path":1434,"title":1435},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix","SSG Framework Selection Matrix",{"path":1437,"title":1438},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fpicking-an-ssg-for-a-multi-language-documentation-site","Picking an SSG for a Multi-Language Docs Site",{"path":1440,"title":1441},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fssg-selection-checklist-for-engineering-teams","SSG Selection Checklist for Engineering Teams",{"path":1443,"title":1444},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Ftotal-cost-of-ownership-for-static-site-generators","Total Cost of Ownership for Static Site Generators",{"path":1446,"title":1447},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs\u002Fcache-busting-with-content-hashed-filenames","Cache Busting with Content-Hashed Filenames",{"path":1449,"title":1450},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs","CDN Caching Rules for SSGs",{"path":1452,"title":1453},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs\u002Fpurging-the-cdn-cache-after-a-static-deploy","Purging the CDN Cache After a Static Deploy",{"path":1455,"title":1456},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs\u002Fsetting-cache-control-headers-on-cloudflare-pages","Cache-Control Headers on Cloudflare Pages",{"path":1458,"title":1459},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs\u002Fsetting-up-proper-cache-headers-on-netlify","Proper Cache Headers on Netlify for SSGs",{"path":1461,"title":1462},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs\u002Fstale-while-revalidate-for-static-html","Stale-While-Revalidate for Static HTML",{"path":1464,"title":1465},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Feliminating-layout-shift-from-web-fonts","Eliminating Layout Shift From Web Fonts",{"path":1467,"title":1468},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Ffixing-cls-from-cookie-banners","Fixing CLS from Cookie Banners",{"path":1470,"title":1471},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Ffixing-cls-from-late-loading-embeds","Fixing CLS From Late-Loading Embeds",{"path":1473,"title":1474},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Ffixing-cls-from-sticky-headers-and-anchor-links","Fixing CLS from Sticky Headers and Anchor Links",{"path":1476,"title":1477},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites","Cumulative Layout Shift Fixes for Static Sites",{"path":1479,"title":1480},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Fmeasuring-cls-in-the-field-with-web-vitals-js","Measuring CLS in the Field With web-vitals.js",{"path":1482,"title":1483},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites\u002Freserving-space-for-images-and-embeds-to-stop-layout-shift","Reserving Space for Images and Embeds",{"path":1485,"title":1486},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Ffont-display-optional-vs-swap","font-display: optional vs swap",{"path":1488,"title":1489},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites","Font Loading Strategies for Static Sites",{"path":1491,"title":1492},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fmetric-matched-fallback-fonts-with-size-adjust","Metric-Matched Fallback Fonts with size-adjust",{"path":1494,"title":1495},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fpreloading-fonts-without-double-downloads","Preloading Fonts Without Double Downloads",{"path":1497,"title":1498},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fself-hosting-google-fonts-to-eliminate-layout-shift","Self-Host Google Fonts to Eliminate Layout Shift",{"path":1500,"title":1501},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fsubsetting-variable-fonts-for-faster-first-render","Subsetting Variable Fonts for Faster First Render",{"path":1503,"title":1504},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Fbuilding-an-image-cdn-pipeline-for-static-sites","Building an Image CDN Pipeline for Static Sites",{"path":1506,"title":1507},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Fgenerating-open-graph-images-at-build-time","Generating Open Graph Images at Build Time",{"path":1509,"title":1510},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro","Image Optimization Pipelines in Astro",{"path":1512,"title":1513},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Flazy-loading-images-without-hurting-lcp","Lazy-Loading Images Without Hurting LCP",{"path":1515,"title":1516},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Foptimizing-webp-images-in-hugo-without-plugins","Optimizing WebP Images in Hugo Without Plugins",{"path":1518,"title":1519},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Fresponsive-images-with-srcset-in-eleventy","Responsive Images with srcset in Eleventy",{"path":1521,"title":1522},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002Fserving-avif-with-fallbacks-on-static-sites","Serving AVIF With Fallbacks on Static Sites",{"path":1524,"title":1525},"\u002Fperformance-optimization-core-web-vitals-for-ssgs","Core Web Vitals Optimization for SSGs",{"path":1527,"title":1528},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance","Astro Islands vs Full Hydration Performance",{"path":1530,"title":1531},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fdeferring-hydration-with-client-visible-in-astro","Deferring Hydration with client:visible in Astro",{"path":1533,"title":1534},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fhow-to-reduce-bundle-size-in-eleventy-builds","How to Reduce Bundle Size in Eleventy Builds",{"path":1536,"title":1537},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering","JavaScript Hydration & Partial Rendering",{"path":1539,"title":1540},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fmeasuring-inp-on-static-sites-with-real-user-monitoring","Measuring INP on Static Sites with RUM",{"path":1542,"title":1543},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Freplacing-react-islands-with-web-components","Replacing React Islands with Web Components",{"path":1545,"title":1546},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites\u002Feliminating-render-blocking-css-on-static-sites","Eliminating Render-Blocking CSS on Static Sites",{"path":1548,"title":1549},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites\u002Ffixing-lcp-on-text-heavy-documentation-pages","Fixing LCP on Text-Heavy Documentation Pages",{"path":1551,"title":1552},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites","Largest Contentful Paint Optimization for Static Sites",{"path":1554,"title":1555},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites\u002Fmeasuring-lcp-subparts-with-devtools","Measuring LCP Subparts with DevTools",{"path":1557,"title":1558},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites\u002Foptimizing-lcp-on-astro-with-priority-hints","Optimizing LCP on Astro with Priority Hints",{"path":1560,"title":1561},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites\u002Freducing-lcp-from-hero-images-on-static-sites","Reducing LCP from Hero Images on Static Sites",{"path":1563,"title":1564},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Fcomparing-lab-and-field-data-with-crux","Comparing Lab and Field Data with CrUX",{"path":1566,"title":1567},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci","Performance Budgets and Lighthouse CI",{"path":1569,"title":1570},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Freducing-lighthouse-score-variance-in-ci","Reducing Lighthouse Score Variance in CI",{"path":1572,"title":1573},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Frunning-webpagetest-scripts-against-preview-deploys","Running WebPageTest Scripts Against Preview Deploys",{"path":1575,"title":1576},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Fsetting-up-lighthouse-ci-for-a-static-site","Setting Up Lighthouse CI for a Static Site",{"path":1578,"title":1579},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Ftracking-bundle-size-per-pull-request","Tracking Bundle Size per Pull Request",{"path":1581,"title":1582},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Fwriting-a-performance-budget-that-fails-builds","Writing a Performance Budget That Fails Builds",{"path":1584,"title":1585},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fauditing-unused-preloads","Auditing Unused Preloads",{"path":1587,"title":1588},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed","Resource Hints and Navigation Speed",{"path":1590,"title":1591},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Finstant-navigation-with-speculation-rules","Instant Navigation with Speculation Rules",{"path":1593,"title":1594},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fpreconnect-vs-dns-prefetch-on-static-sites","Preconnect vs DNS-Prefetch on Static Sites",{"path":1596,"title":1597},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fprefetching-links-in-astro","Prefetching Links in Astro",{"path":1599,"title":1600},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fview-transitions-on-multi-page-static-sites","View Transitions on Multi-Page Static Sites",{"path":1602,"title":1603},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites\u002Fauditing-third-party-scripts-with-lighthouse","Auditing Third-Party Scripts With Lighthouse",{"path":1605,"title":1606},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites","Third-Party Script Performance on Static Sites",{"path":1608,"title":1609},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites\u002Flazy-loading-youtube-embeds-on-static-sites","Lazy-Loading YouTube Embeds on Static Sites",{"path":1611,"title":1612},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites\u002Floading-google-tag-manager-without-hurting-inp","Loading Google Tag Manager Without Hurting INP",{"path":1614,"title":1615},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites\u002Frunning-third-party-scripts-in-a-web-worker-with-partytown","Running Third-Party Scripts in a Web Worker with Partytown",{"path":1617,"title":1618},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites\u002Fself-hosting-analytics-to-cut-third-party-requests","Self-Hosting Analytics to Cut Third-Party Requests",{"path":1620,"title":1621},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fautomating-eleventy-deployments-with-cloudflare-pages","Automating Eleventy Deployments on Cloudflare Pages",{"path":1623,"title":1624},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fconfiguring-redirects-on-cloudflare-pages","Configuring Redirects on Cloudflare Pages",{"path":1626,"title":1627},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fcustom-domains-and-tls-on-cloudflare-pages","Custom Domains and TLS on Cloudflare Pages",{"path":1629,"title":1630},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fdeploying-hugo-to-cloudflare-pages-and-workers","Deploying Hugo to Cloudflare Pages and Workers",{"path":1632,"title":34},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup",{"path":1634,"title":1233},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fmigrating-from-cloudflare-pages-to-workers-static-assets",{"path":1636,"title":1637},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests","Checking Links in Pull Requests",{"path":1639,"title":1640},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fdocs-as-code-review-workflow-for-writers","Docs-as-Code Review Workflow for Writers",{"path":1642,"title":1643},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci","Editorial Checks with Vale in CI",{"path":1645,"title":1646},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams","Content Workflows for Documentation Teams",{"path":1648,"title":1649},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fscheduling-content-publication-with-cron-triggered-builds","Scheduling Content Publication With Cron-Triggered Builds",{"path":1651,"title":1652},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fwiring-a-headless-cms-to-a-static-build","Wiring a Headless CMS to a Static Build",{"path":1654,"title":1655},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fbuilding-astro-sites-with-github-actions","Building Astro Sites with GitHub Actions",{"path":1657,"title":1658},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fcaching-node-modules-in-github-actions-for-faster-ssg-builds","Caching node_modules in GitHub Actions",{"path":1660,"title":1661},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-github-pages-with-actions","Deploying to GitHub Pages with Actions",{"path":1663,"title":1664},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-multiple-environments-from-one-workflow","Deploying to Multiple Environments From One Workflow",{"path":1666,"title":1667},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fhow-to-set-up-github-actions-for-hugo-deployments","GitHub Actions for Hugo Deployments",{"path":1669,"title":1670},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds","GitHub Actions for Automated SSG Builds",{"path":1672,"title":1673},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fmatrix-builds-for-multi-site-monorepos","Matrix Builds for Multi-Site Monorepos",{"path":1675,"title":1676},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fcaching-hugo-builds-in-github-actions","Caching Hugo Builds in GitHub Actions",{"path":1678,"title":1679},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fenabling-incremental-builds-in-eleventy","Enabling Incremental Builds in Eleventy",{"path":1681,"title":1682},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fincremental-builds-in-astro-with-the-content-layer","Incremental Builds in Astro with the Content Layer",{"path":1684,"title":1685},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs","Incremental Builds and Build Caching for SSGs",{"path":1687,"title":1688},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fmeasuring-build-time-regressions-in-ci","Measuring Build-Time Regressions in CI",{"path":1690,"title":1691},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fremote-caching-with-turborepo-for-ssg-monorepos","Remote Caching with Turborepo for SSG Monorepos",{"path":1693,"title":1694},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fsharing-build-cache-across-ci-runners","Sharing Build Cache Across CI Runners",{"path":1696,"title":1697},"\u002Fproduction-ready-deployment-cicd-workflows","Production-Ready Deployment & CI\u002FCD for SSGs",{"path":1699,"title":1700},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Falerting-on-cache-hit-ratio-drops","Alerting on Cache Hit Ratio Drops",{"path":1702,"title":1703},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fbuilding-a-core-web-vitals-dashboard-from-rum-data","Building a Core Web Vitals Dashboard from RUM Data",{"path":1705,"title":1706},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule","Crawling for Broken Links on a Schedule",{"path":1708,"title":1709},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production","Monitoring Static Sites in Production",{"path":1711,"title":1712},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge","Logging 404s at the Edge",{"path":1714,"title":1715},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fuptime-and-synthetic-checks-for-static-sites","Uptime and Synthetic Checks for Static Sites",{"path":1717,"title":1718},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fconfiguring-vercel-for-hugo-and-eleventy","Configuring Vercel for Hugo and Eleventy",{"path":1720,"title":29},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies",{"path":1722,"title":1723},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-build-hooks-for-content-updates","Netlify Build Hooks for Content Updates",{"path":1725,"title":1726},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-redirects-and-rewrites-for-static-sites","Netlify Redirects and Rewrites for Static Sites",{"path":1728,"title":1729},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fsetting-up-deploy-previews-on-netlify-for-every-pull-request","Netlify Deploy Previews for Every Pull Request",{"path":1731,"title":1732},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fvercel-isr-vs-static-generation-for-ssgs","Vercel ISR vs Static Generation for SSGs",{"path":1734,"title":1735},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fautomating-preview-deploy-pipelines-with-github-actions","Automating Preview Deploy Pipelines with GitHub Actions",{"path":1737,"title":1738},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fcleaning-up-stale-preview-deployments","Cleaning Up Stale Preview Deployments",{"path":1740,"title":1741},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests","Preview Environments for Pull Requests",{"path":1743,"title":1744},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpassword-protecting-preview-deployments","Password-Protecting Preview Deployments",{"path":1746,"title":1747},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpreviewing-headless-cms-drafts","Previewing Headless CMS Drafts",{"path":1749,"title":1750},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys","Visual Regression Testing on Preview Deploys",{"path":1752,"title":1753},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fatomic-deploys-vs-incremental-uploads","Atomic Deploys vs Incremental Uploads",{"path":1755,"title":1756},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fcanary-releases-for-static-sites","Canary Releases for Static Sites",{"path":1758,"title":1759},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Ffeature-flags-on-static-sites","Feature Flags on Static Sites",{"path":1761,"title":1762},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites","Rollbacks and Deploy Safety for Static Sites",{"path":1764,"title":1765},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Frolling-back-a-bad-static-deploy-in-under-a-minute","Rolling Back a Bad Static Deploy in Under a Minute",{"path":1767,"title":1768},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Frunning-smoke-tests-against-a-preview-url","Running Smoke Tests Against a Preview URL",{"path":1770,"title":1771},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fauditing-npm-dependencies-in-ssg-pipelines","Auditing npm Dependencies in SSG Pipelines",{"path":1773,"title":1774},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fenabling-hsts-and-preload-safely","Enabling HSTS and Preload Safely",{"path":1776,"title":1777},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fhash-based-csp-for-inline-scripts-in-astro","Hash-Based CSP for Inline Scripts in Astro",{"path":1779,"title":1780},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites","Security Headers and Hardening for Static Sites",{"path":1782,"title":1783},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsecuring-deploy-credentials-with-github-oidc","Securing Deploy Credentials with GitHub OIDC",{"path":1785,"title":1786},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsubresource-integrity-for-third-party-assets","Subresource Integrity for Third-Party Assets",{"path":1788,"title":1789},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fwriting-a-content-security-policy-for-a-static-site","Writing a Content Security Policy for a Static Site",{"path":1791,"title":1792},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fclean-urls-and-trailing-slashes-on-s3","Clean URLs and Trailing Slashes on S3",{"path":1794,"title":1795},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fcloudfront-functions-for-redirects","CloudFront Functions for Redirects",{"path":1797,"title":1798},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fdeploying-a-static-site-to-s3-and-cloudfront","Deploying a Static Site to S3 and CloudFront",{"path":1800,"title":1801},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites","Self-Hosting Static Sites on S3, Nginx and Caddy",{"path":1803,"title":1804},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-caddy","Serving a Static Site with Caddy",{"path":1806,"title":1807},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-nginx","Serving a Static Site with Nginx",{"path":1809,"title":1810},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fzero-downtime-deploys-with-symlink-swaps","Zero-Downtime Deploys with Symlink Swaps",{"path":1812,"title":1212},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fadding-a-contact-form-with-cloudflare-workers",{"path":1814,"title":1815},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fhandling-form-submissions-on-a-static-site","Handling Form Submissions on a Static Site",{"path":1817,"title":24},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites",{"path":1277,"title":5},{"path":1820,"title":1821},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fprotecting-a-static-site-behind-authentication","Protecting a Static Site Behind Authentication",{"path":1823,"title":1219},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fproxying-third-party-apis-from-an-edge-function",1789722847980]