[{"data":1,"prerenderedAt":1837},["ShallowReactive",2],{"page:\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule":3,"all-docs-nav":1293},{"id":4,"title":5,"body":6,"breadcrumb":1268,"dateModified":1278,"datePublished":1278,"description":1279,"extension":1280,"faq":1281,"meta":1286,"navigation":1287,"path":1288,"seo":1289,"slug":12,"stem":1290,"type":1291,"__hash__":1292},"content\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule\u002Findex.md","Crawling for Broken Links on a Schedule",{"type":7,"value":8,"toc":1249},"minimark",[9,13,17,31,36,54,58,61,228,234,394,398,401,656,660,667,790,793,797,821,825,828,880,952,955,959,962,1042,1045,1049,1052,1125,1128,1132,1164,1168,1171,1175,1180,1183,1187,1190,1194,1197,1201,1204,1208,1245],[10,11,5],"h1",{"id":12},"crawling-for-broken-links-on-a-schedule",[14,15,16],"p",{},"Links rot. A crawl of a four-year-old documentation site found that 11% of its external links returned errors, soft-404s or redirects to unrelated pages; a three-year-old engineering blog was at 17%. None of that breakage happened in a commit, so no pull-request link check could have caught it. Readers find it one click at a time, and each broken link quietly tells them the page is out of date.",[14,18,19,20,25,26,30],{},"A scheduled crawl of the live site catches rot as it happens and turns it into a short queue of fixes. This guide sets up a weekly crawl with lychee in GitHub Actions, separates internal from external breakage, files issues rather than posting a wall of red, and keeps false positives low enough that people act on the results. It is part of ",[21,22,24],"a",{"href":23},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002F","Monitoring Static Sites in Production"," and complements the pull-request checks in ",[21,27,29],{"href":28},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests\u002F","Checking Links in Pull Requests",".",[32,33,35],"h2",{"id":34},"prerequisites","Prerequisites",[37,38,39,48,51],"ul",{},[40,41,42,43,47],"li",{},"A live site with a ",[44,45,46],"code",{},"sitemap.xml"," listing every page.",[40,49,50],{},"GitHub Actions (or any scheduler) and permission to create issues.",[40,52,53],{},"An idea of which external domains the site links to most — the first crawl will tell you.",[32,55,57],{"id":56},"step-1-crawl-from-the-sitemap","Step 1: Crawl From the Sitemap",[14,59,60],{},"Crawling from the sitemap guarantees every published page is checked, including pages not linked from navigation. lychee is a fast link checker that accepts a list of URLs to fetch and extracts and checks every link on each:",[62,63,68],"pre",{"className":64,"code":65,"language":66,"meta":67,"style":67},"language-bash shiki shiki-themes github-light github-dark","curl -s https:\u002F\u002Fdocs.example.com\u002Fsitemap.xml | grep -oP '(?\u003C=\u003Cloc>)[^\u003C]+' > pages.txt\nlychee --no-progress --format json --output report.json \\\n  --max-concurrency 8 --max-retries 3 --retry-wait-time 5 \\\n  --timeout 20 --accept '200..=299,429' \\\n  --user-agent 'Mozilla\u002F5.0 (compatible; docs-linkcheck\u002F1.0; +https:\u002F\u002Fdocs.example.com\u002Fabout\u002F)' \\\n  --exclude-path 'pagefind' --exclude '^https:\u002F\u002F(www\\.)?linkedin\\.com' \\\n  --cache --max-cache-age 3d \\\n  $(cat pages.txt)\n","bash","",[44,69,70,106,130,153,170,181,198,212],{"__ignoreMap":67},[71,72,75,79,83,87,91,94,97,100,103],"span",{"class":73,"line":74},"line",1,[71,76,78],{"class":77},"sScJk","curl",[71,80,82],{"class":81},"sj4cs"," -s",[71,84,86],{"class":85},"sZZnC"," https:\u002F\u002Fdocs.example.com\u002Fsitemap.xml",[71,88,90],{"class":89},"szBVR"," |",[71,92,93],{"class":77}," grep",[71,95,96],{"class":81}," -oP",[71,98,99],{"class":85}," '(?\u003C=\u003Cloc>)[^\u003C]+'",[71,101,102],{"class":89}," >",[71,104,105],{"class":85}," pages.txt\n",[71,107,109,112,115,118,121,124,127],{"class":73,"line":108},2,[71,110,111],{"class":77},"lychee",[71,113,114],{"class":81}," --no-progress",[71,116,117],{"class":81}," --format",[71,119,120],{"class":85}," json",[71,122,123],{"class":81}," --output",[71,125,126],{"class":85}," report.json",[71,128,129],{"class":81}," \\\n",[71,131,133,136,139,142,145,148,151],{"class":73,"line":132},3,[71,134,135],{"class":81},"  --max-concurrency",[71,137,138],{"class":81}," 8",[71,140,141],{"class":81}," --max-retries",[71,143,144],{"class":81}," 3",[71,146,147],{"class":81}," --retry-wait-time",[71,149,150],{"class":81}," 5",[71,152,129],{"class":81},[71,154,156,159,162,165,168],{"class":73,"line":155},4,[71,157,158],{"class":81},"  --timeout",[71,160,161],{"class":81}," 20",[71,163,164],{"class":81}," --accept",[71,166,167],{"class":85}," '200..=299,429'",[71,169,129],{"class":81},[71,171,173,176,179],{"class":73,"line":172},5,[71,174,175],{"class":81},"  --user-agent",[71,177,178],{"class":85}," 'Mozilla\u002F5.0 (compatible; docs-linkcheck\u002F1.0; +https:\u002F\u002Fdocs.example.com\u002Fabout\u002F)'",[71,180,129],{"class":81},[71,182,184,187,190,193,196],{"class":73,"line":183},6,[71,185,186],{"class":81},"  --exclude-path",[71,188,189],{"class":85}," 'pagefind'",[71,191,192],{"class":81}," --exclude",[71,194,195],{"class":85}," '^https:\u002F\u002F(www\\.)?linkedin\\.com'",[71,197,129],{"class":81},[71,199,201,204,207,210],{"class":73,"line":200},7,[71,202,203],{"class":81},"  --cache",[71,205,206],{"class":81}," --max-cache-age",[71,208,209],{"class":85}," 3d",[71,211,129],{"class":81},[71,213,215,219,222,225],{"class":73,"line":214},8,[71,216,218],{"class":217},"sVt8B","  $(",[71,220,221],{"class":77},"cat",[71,223,224],{"class":85}," pages.txt",[71,226,227],{"class":217},")\n",[14,229,230,233],{},[44,231,232],{},"--cache"," keeps results for three days, so a re-run after fixing one link does not re-check thousands of healthy ones. Accepting 429 (rate limited) as non-broken avoids reporting sites that merely asked the crawler to slow down; they are re-checked next week.",[235,236,237,390],"figure",{},[238,239,246,247,246,251,246,255,246,262,246,375],"svg",{"viewBox":240,"role":241,"ariaLabelledBy":242,"xmlns":245},"0 0 760 280","img",[243,244],"blc-flow-title","blc-flow-desc","http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","\n  ",[248,249,250],"title",{"id":243},"Weekly crawl pipeline",[252,253,254],"desc",{"id":244},"The sitemap lists 2,000 pages. lychee fetches each, extracts about 41,000 links and checks 9,300 unique targets. Results are split into internal failures, which fail the job and alert the team, and external failures, which are deduplicated against open issues and filed as new issues grouped by domain.",[256,257],"rect",{"x":258,"y":258,"width":259,"height":260,"fill":261},"0","760","280","#ffffff",[263,264,266,267,266,275,266,285,266,290,266,296,266,302,266,306,266,309,266,316,266,321,266,325,266,331,266,334,266,338,266,345,266,349,266,352,266,371,246],"g",{"style":265},"font-family:system-ui, sans-serif;font-size:12px","\n    ",[268,269,274],"text",{"x":270,"y":271,"fill":272,"style":273},"380","28","#1f2937","font-size:16px;font-weight:700;text-anchor:middle","Sitemap in, a short fix list out",[256,276],{"x":277,"y":278,"width":279,"height":280,"rx":281,"fill":282,"stroke":283,"style":284},"20","100","130","60","10","#f8fafc","#d9e2ef","stroke-width:1.5px",[268,286,46],{"x":287,"y":288,"fill":272,"style":289},"85","126","font-weight:700;text-anchor:middle",[268,291,295],{"x":287,"y":292,"fill":293,"style":294},"144","#556071","font-size:11px;text-anchor:middle","2,000 pages",[256,297],{"x":298,"y":278,"width":299,"height":280,"rx":281,"fill":300,"opacity":301,"stroke":300,"style":284},"185","150","#6a4c93","0.14",[268,303,111],{"x":304,"y":305,"fill":272,"style":289},"260","124",[268,307,308],{"x":304,"y":292,"fill":293,"style":294},"9,300 unique targets",[256,310],{"x":311,"y":280,"width":312,"height":313,"rx":281,"fill":314,"opacity":301,"stroke":315,"style":284},"375","170","56","#ff595e","#d83b41",[268,317,320],{"x":318,"y":319,"fill":272,"style":289},"460","84","internal failures",[268,322,324],{"x":318,"y":323,"fill":293,"style":294},"102","fail job, alert team",[256,326],{"x":311,"y":327,"width":312,"height":313,"rx":281,"fill":328,"opacity":329,"stroke":330,"style":284},"146","#ffca3a","0.24","#a97b00",[268,332,333],{"x":318,"y":312,"fill":272,"style":289},"external failures",[268,335,337],{"x":318,"y":336,"fill":293,"style":294},"188","dedupe vs open issues",[256,339],{"x":340,"y":327,"width":341,"height":313,"rx":281,"fill":342,"opacity":343,"stroke":344,"style":284},"585","155","#8ac926","0.18","#5a8a16",[268,346,348],{"x":347,"y":312,"fill":272,"style":289},"662","new issues",[268,350,351],{"x":347,"y":336,"fill":293,"style":294},"one per domain",[263,353,356,357,356,362,356,365,356,368,266],{"stroke":293,"fill":354,"style":355},"none","stroke-width:2px","\n      ",[358,359],"path",{"d":360,"style":361},"M152 130 L181 130","marker-end:url(#blc-arrow)",[358,363],{"d":364,"style":361},"M337 120 L371 92",[358,366],{"d":367,"style":361},"M337 140 L371 170",[358,369],{"d":370,"style":361},"M547 174 L581 174",[268,372,374],{"x":270,"y":373,"fill":293,"style":294},"252","~14 minutes per weekly run with 8 concurrent requests and polite retries",[376,377,266,378,246],"defs",{},[379,380,356,387,266],"marker",{"id":381,"viewBox":382,"refX":383,"refY":384,"markerWidth":385,"markerHeight":385,"orient":386},"blc-arrow","0 0 10 10","8","5","7","auto-start-reverse",[358,388],{"d":389,"fill":293},"M0 0 L10 5 L0 10 z",[391,392,393],"figcaption",{},"Internal breakage is urgent and yours; external breakage is gradual and needs tracking, not alarms.",[32,395,397],{"id":396},"step-2-split-internal-from-external","Step 2: Split Internal From External",[14,399,400],{},"Internal broken links on a live site mean something went wrong in routing or deployment — a redirect missing after a page moved, a section excluded from the build. They should fail the job and alert the team the same day. External broken links are expected rot, handled at a steady pace.",[62,402,406],{"className":403,"code":404,"language":405,"meta":67,"style":67},"language-js shiki shiki-themes github-light github-dark","\u002F\u002F scripts\u002Ftriage-links.mjs\nconst r = JSON.parse(readFileSync('report.json', 'utf8'));\nconst failures = Object.entries(r.fail_map ?? {}).flatMap(([page, links]) =>\n  links.map((l) => ({ page, url: l.url, status: l.status?.code ?? l.status?.text })));\nconst internal = failures.filter((f) => new URL(f.url).host === 'docs.example.com');\nconst external = failures.filter((f) => new URL(f.url).host !== 'docs.example.com');\nwriteFileSync('external.json', JSON.stringify(external));\nif (internal.length) { console.error(internal); process.exit(1); }\n","js",[44,407,408,414,453,498,526,568,602,625],{"__ignoreMap":67},[71,409,410],{"class":73,"line":74},[71,411,413],{"class":412},"sJ8bj","\u002F\u002F scripts\u002Ftriage-links.mjs\n",[71,415,416,419,422,425,428,430,433,436,439,441,444,447,450],{"class":73,"line":108},[71,417,418],{"class":89},"const",[71,420,421],{"class":81}," r",[71,423,424],{"class":89}," =",[71,426,427],{"class":81}," JSON",[71,429,30],{"class":217},[71,431,432],{"class":77},"parse",[71,434,435],{"class":217},"(",[71,437,438],{"class":77},"readFileSync",[71,440,435],{"class":217},[71,442,443],{"class":85},"'report.json'",[71,445,446],{"class":217},", ",[71,448,449],{"class":85},"'utf8'",[71,451,452],{"class":217},"));\n",[71,454,455,457,460,462,465,468,471,474,477,480,483,487,489,492,495],{"class":73,"line":132},[71,456,418],{"class":89},[71,458,459],{"class":81}," failures",[71,461,424],{"class":89},[71,463,464],{"class":217}," Object.",[71,466,467],{"class":77},"entries",[71,469,470],{"class":217},"(r.fail_map ",[71,472,473],{"class":89},"??",[71,475,476],{"class":217}," {}).",[71,478,479],{"class":77},"flatMap",[71,481,482],{"class":217},"(([",[71,484,486],{"class":485},"s4XuR","page",[71,488,446],{"class":217},[71,490,491],{"class":485},"links",[71,493,494],{"class":217},"]) ",[71,496,497],{"class":89},"=>\n",[71,499,500,503,506,509,512,515,518,521,523],{"class":73,"line":155},[71,501,502],{"class":217},"  links.",[71,504,505],{"class":77},"map",[71,507,508],{"class":217},"((",[71,510,511],{"class":485},"l",[71,513,514],{"class":217},") ",[71,516,517],{"class":89},"=>",[71,519,520],{"class":217}," ({ page, url: l.url, status: l.status?.code ",[71,522,473],{"class":89},[71,524,525],{"class":217}," l.status?.text })));\n",[71,527,528,530,533,535,538,541,543,546,548,550,553,556,559,562,565],{"class":73,"line":172},[71,529,418],{"class":89},[71,531,532],{"class":81}," internal",[71,534,424],{"class":89},[71,536,537],{"class":217}," failures.",[71,539,540],{"class":77},"filter",[71,542,508],{"class":217},[71,544,545],{"class":485},"f",[71,547,514],{"class":217},[71,549,517],{"class":89},[71,551,552],{"class":89}," new",[71,554,555],{"class":77}," URL",[71,557,558],{"class":217},"(f.url).host ",[71,560,561],{"class":89},"===",[71,563,564],{"class":85}," 'docs.example.com'",[71,566,567],{"class":217},");\n",[71,569,570,572,575,577,579,581,583,585,587,589,591,593,595,598,600],{"class":73,"line":183},[71,571,418],{"class":89},[71,573,574],{"class":81}," external",[71,576,424],{"class":89},[71,578,537],{"class":217},[71,580,540],{"class":77},[71,582,508],{"class":217},[71,584,545],{"class":485},[71,586,514],{"class":217},[71,588,517],{"class":89},[71,590,552],{"class":89},[71,592,555],{"class":77},[71,594,558],{"class":217},[71,596,597],{"class":89},"!==",[71,599,564],{"class":85},[71,601,567],{"class":217},[71,603,604,607,609,612,614,617,619,622],{"class":73,"line":200},[71,605,606],{"class":77},"writeFileSync",[71,608,435],{"class":217},[71,610,611],{"class":85},"'external.json'",[71,613,446],{"class":217},[71,615,616],{"class":81},"JSON",[71,618,30],{"class":217},[71,620,621],{"class":77},"stringify",[71,623,624],{"class":217},"(external));\n",[71,626,627,630,633,636,639,642,645,648,650,653],{"class":73,"line":214},[71,628,629],{"class":89},"if",[71,631,632],{"class":217}," (internal.",[71,634,635],{"class":81},"length",[71,637,638],{"class":217},") { console.",[71,640,641],{"class":77},"error",[71,643,644],{"class":217},"(internal); process.",[71,646,647],{"class":77},"exit",[71,649,435],{"class":217},[71,651,652],{"class":81},"1",[71,654,655],{"class":217},"); }\n",[32,657,659],{"id":658},"step-3-file-issues-grouped-and-deduplicated","Step 3: File Issues, Grouped and Deduplicated",[14,661,662,663,666],{},"Posting 200 broken links into a chat channel produces no fixes. Group external failures by domain, check them against open issues with a ",[44,664,665],{},"broken-link"," label, and open one issue per domain listing every affected page:",[62,668,672],{"className":669,"code":670,"language":671,"meta":67,"style":67},"language-yaml shiki shiki-themes github-light github-dark","- name: File issues for new external breakage\n  if: always()\n  uses: actions\u002Fgithub-script@v7\n  with:\n    script: |\n      const ext = require('.\u002Fexternal.json');\n      const byHost = {};\n      for (const f of ext) (byHost[new URL(f.url).host] ??= []).push(f);\n      const open = await github.paginate(github.rest.issues.listForRepo,\n        { owner: context.repo.owner, repo: context.repo.repo, labels: 'broken-link', state: 'open' });\n      for (const [host, items] of Object.entries(byHost)) {\n        if (open.some((i) => i.title.includes(host))) continue;\n        await github.rest.issues.create({ owner: context.repo.owner, repo: context.repo.repo,\n          title: `Broken links to ${host} (${items.length})`, labels: ['broken-link'],\n          body: items.map((i) => `- [ ] ${i.url} (${i.status}) on ${i.page}`).join('\\n') });\n      }\n","yaml",[44,673,674,689,699,709,717,727,732,737,742,748,754,760,766,772,778,784],{"__ignoreMap":67},[71,675,676,679,683,686],{"class":73,"line":74},[71,677,678],{"class":217},"- ",[71,680,682],{"class":681},"s9eBZ","name",[71,684,685],{"class":217},": ",[71,687,688],{"class":85},"File issues for new external breakage\n",[71,690,691,694,696],{"class":73,"line":108},[71,692,693],{"class":681},"  if",[71,695,685],{"class":217},[71,697,698],{"class":85},"always()\n",[71,700,701,704,706],{"class":73,"line":132},[71,702,703],{"class":681},"  uses",[71,705,685],{"class":217},[71,707,708],{"class":85},"actions\u002Fgithub-script@v7\n",[71,710,711,714],{"class":73,"line":155},[71,712,713],{"class":681},"  with",[71,715,716],{"class":217},":\n",[71,718,719,722,724],{"class":73,"line":172},[71,720,721],{"class":681},"    script",[71,723,685],{"class":217},[71,725,726],{"class":89},"|\n",[71,728,729],{"class":73,"line":183},[71,730,731],{"class":85},"      const ext = require('.\u002Fexternal.json');\n",[71,733,734],{"class":73,"line":200},[71,735,736],{"class":85},"      const byHost = {};\n",[71,738,739],{"class":73,"line":214},[71,740,741],{"class":85},"      for (const f of ext) (byHost[new URL(f.url).host] ??= []).push(f);\n",[71,743,745],{"class":73,"line":744},9,[71,746,747],{"class":85},"      const open = await github.paginate(github.rest.issues.listForRepo,\n",[71,749,751],{"class":73,"line":750},10,[71,752,753],{"class":85},"        { owner: context.repo.owner, repo: context.repo.repo, labels: 'broken-link', state: 'open' });\n",[71,755,757],{"class":73,"line":756},11,[71,758,759],{"class":85},"      for (const [host, items] of Object.entries(byHost)) {\n",[71,761,763],{"class":73,"line":762},12,[71,764,765],{"class":85},"        if (open.some((i) => i.title.includes(host))) continue;\n",[71,767,769],{"class":73,"line":768},13,[71,770,771],{"class":85},"        await github.rest.issues.create({ owner: context.repo.owner, repo: context.repo.repo,\n",[71,773,775],{"class":73,"line":774},14,[71,776,777],{"class":85},"          title: `Broken links to ${host} (${items.length})`, labels: ['broken-link'],\n",[71,779,781],{"class":73,"line":780},15,[71,782,783],{"class":85},"          body: items.map((i) => `- [ ] ${i.url} (${i.status}) on ${i.page}`).join('\\n') });\n",[71,785,787],{"class":73,"line":786},16,[71,788,789],{"class":85},"      }\n",[14,791,792],{},"The checklist format lets whoever picks up the issue tick off each link as it is fixed.",[32,794,796],{"id":795},"anchors-and-redirect-chains","Anchors and Redirect Chains",[14,798,799,800,804,805,808,809,812,813,816,817,820],{},"Two quieter kinds of breakage are worth including once the basic crawl is stable. ",[801,802,803],"strong",{},"Fragment links"," — ",[44,806,807],{},"\u002Fguides\u002Fconfig\u002F#cache-dir"," — keep returning 200 when the heading is renamed, so a status-code check never notices that the reader lands at the top of a long page instead of the section they wanted. lychee's ",[44,810,811],{},"--include-fragments"," option checks that the fragment exists as an ",[44,814,815],{},"id"," on the target page; on this site it found 41 stale anchors, almost all internal and caused by heading edits. ",[801,818,819],{},"Redirect chains"," to external sites are not broken yet but often will be: a link that now goes through two redirects to reach its destination usually means the target site has reorganised, and updating the link to its final URL removes latency for readers and a future failure point. Report chains of two or more hops as low-priority items in the same weekly issue rather than as failures.",[32,822,824],{"id":823},"step-4-keep-false-positives-low","Step 4: Keep False Positives Low",[14,826,827],{},"Link checkers produce false positives from sites that block bots, return 403 to anything without a browser fingerprint, rate-limit, or serve soft-404s with a 200 status. On the first run against the docs site, 38% of reported external failures were false. Four measures brought that down to 4%:",[829,830,831,844],"table",{},[832,833,834],"thead",{},[835,836,837,841],"tr",{},[838,839,840],"th",{},"Measure",[838,842,843],{},"False positives removed",[845,846,847,856,864,872],"tbody",{},[835,848,849,853],{},[850,851,852],"td",{},"Realistic user agent with a contact URL",[850,854,855],{},"31% of the false set",[835,857,858,861],{},[850,859,860],{},"Accept 429, retry with backoff",[850,862,863],{},"22%",[835,865,866,869],{},[850,867,868],{},"Exclude domains that always block checkers (checked manually quarterly)",[850,870,871],{},"35%",[835,873,874,877],{},[850,875,876],{},"Treat 403 from known-good domains as a warning, not a failure",[850,878,879],{},"12%",[235,881,882,949],{},[238,883,246,888,246,891,246,894,246,896],{"viewBox":884,"role":241,"ariaLabelledBy":885,"xmlns":245},"0 0 760 260",[886,887],"blc-fp-title","blc-fp-desc",[248,889,890],{"id":886},"Reported external failures, true versus false",[252,892,893],{"id":887},"Two stacked bars. On the first crawl, 342 external failures were reported, of which 130 were false positives. After tuning, 221 were reported, of which 9 were false, so nearly every reported link was genuinely broken.",[256,895],{"x":258,"y":258,"width":259,"height":304,"fill":261},[263,897,266,898,266,901,266,906,266,914,266,919,266,924,266,928,266,932,266,935,266,937,266,940,266,945,246],{"style":265},[268,899,900],{"x":270,"y":271,"fill":272,"style":273},"Tuning turns a noisy list into a trustworthy one",[268,902,905],{"x":903,"y":319,"fill":272,"style":904},"30","font-weight:700","First crawl",[256,907],{"x":908,"y":909,"width":910,"height":911,"fill":342,"opacity":912,"stroke":344,"style":913},"160","64","318","32","0.3","stroke-width:1px",[268,915,918],{"x":916,"y":287,"fill":272,"style":917},"319","text-anchor:middle","212 genuinely broken",[256,920],{"x":921,"y":909,"width":922,"height":911,"fill":314,"opacity":923,"stroke":315,"style":913},"478","195","0.25",[268,925,927],{"x":926,"y":287,"fill":272,"style":917},"575","130 false (38%)",[268,929,931],{"x":903,"y":930,"fill":272,"style":904},"154","After tuning",[256,933],{"x":908,"y":934,"width":910,"height":911,"fill":342,"opacity":912,"stroke":344,"style":913},"134",[268,936,918],{"x":916,"y":341,"fill":272,"style":917},[256,938],{"x":921,"y":934,"width":939,"height":911,"fill":314,"opacity":923,"stroke":315,"style":913},"14",[268,941,944],{"x":942,"y":341,"fill":943,"style":904},"502","#3f6410","9 false (4%)",[268,946,948],{"x":270,"y":947,"fill":293,"style":294},"224","Same site, same week; false positives verified by opening each link in a browser",[391,950,951],{},"A report people trust gets worked through; a report with a third false entries gets ignored.",[14,953,954],{},"Soft-404s — pages that return 200 with \"page not found\" content — are the one category lychee cannot detect by status. A small post-check fetches a sample of 200-status external URLs and flags bodies under 2 KB or containing \"not found\" in the title, which found 17 more dead links on the first run.",[32,956,958],{"id":957},"measured-impact","Measured Impact",[14,960,961],{},"Six months of weekly crawls on the 2,000-page docs site:",[829,963,964,976],{},[832,965,966],{},[835,967,968,970,973],{},[838,969,840],{},[838,971,972],{},"Start",[838,974,975],{},"After 6 months",[845,977,978,989,999,1010,1020,1031],{},[835,979,980,983,986],{},[850,981,982],{},"Broken external links",[850,984,985],{},"212",[850,987,988],{},"14 (open issues)",[835,990,991,994,997],{},[850,992,993],{},"Broken internal links on live site",[850,995,996],{},"23 (from a restructure)",[850,998,258],{},[835,1000,1001,1004,1007],{},[850,1002,1003],{},"Median age of a broken link when fixed",[850,1005,1006],{},"unknown (years)",[850,1008,1009],{},"9 days",[835,1011,1012,1015,1017],{},[850,1013,1014],{},"False positives per crawl",[850,1016,279],{},[850,1018,1019],{},"5–10",[835,1021,1022,1025,1028],{},[850,1023,1024],{},"Crawl duration",[850,1026,1027],{},"22 min",[850,1029,1030],{},"14 min (with cache)",[835,1032,1033,1036,1039],{},[850,1034,1035],{},"Engineer time per week",[850,1037,1038],{},"—",[850,1040,1041],{},"~40 min working through issues",[14,1043,1044],{},"About a third of fixes replaced the link with the page's new location, a third linked an archived copy (the Internet Archive had most), and a third removed the link and adjusted the sentence.",[32,1046,1048],{"id":1047},"fixing-rot-well","Fixing Rot Well",[14,1050,1051],{},"How a broken link is fixed matters as much as finding it. Each option has a different effect on the reader and on future maintenance.",[235,1053,1054,1122],{},[238,1055,246,1059,246,1062,246,1065,246,1067],{"viewBox":884,"role":241,"ariaLabelledBy":1056,"xmlns":245},[1057,1058],"blc-fix-title","blc-fix-desc",[248,1060,1061],{"id":1057},"How 198 broken external links were fixed",[252,1063,1064],{"id":1058},"A stacked bar of fixes. 68 links were updated to the page's new location, 64 were replaced with an archived copy, 58 were removed with the surrounding text adjusted, and 8 turned out to be temporarily down and recovered on their own.",[256,1066],{"x":258,"y":258,"width":259,"height":304,"fill":261},[263,1068,266,1069,266,1072,266,1078,266,1083,266,1088,266,1092,266,1097,266,1101,266,1104,266,1109,266,1112,266,1115,266,1118,246],{"style":265},[268,1070,1071],{"x":270,"y":271,"fill":272,"style":273},"198 fixes over six months",[256,1073],{"x":1074,"y":1075,"width":1076,"height":1077,"fill":342,"opacity":912,"stroke":344,"style":913},"40","70","233","48",[268,1079,1082],{"x":1080,"y":1081,"fill":272,"style":917},"156","99","new location · 68",[256,1084],{"x":1085,"y":1075,"width":1086,"height":1077,"fill":1087,"opacity":923,"stroke":1087,"style":913},"273","219","#1982c4",[268,1089,1091],{"x":1090,"y":1081,"fill":272,"style":917},"382","archived copy · 64",[256,1093],{"x":1094,"y":1075,"width":1095,"height":1077,"fill":328,"opacity":1096,"stroke":330,"style":913},"492","199","0.35",[268,1098,1100],{"x":1099,"y":1081,"fill":272,"style":917},"591","removed · 58",[256,1102],{"x":1103,"y":1075,"width":271,"height":1077,"fill":282,"stroke":293,"style":913},"691",[268,1105,1108],{"x":1106,"y":1107,"fill":293,"style":294},"705","140","8 recovered",[268,1110,1111],{"x":1080,"y":312,"fill":293,"style":294},"best: reader gets current info",[268,1113,1114],{"x":1090,"y":312,"fill":293,"style":294},"preserves the cited source",[268,1116,1117],{"x":1099,"y":312,"fill":293,"style":294},"when the source no longer matters",[268,1119,1121],{"x":270,"y":1120,"fill":293,"style":294},"222","Links to archived copies were marked \"(archived)\" in the link text so readers know what to expect",[391,1123,1124],{},"Roughly equal thirds; the right fix depends on whether the linked content still exists and still matters.",[14,1126,1127],{},"Two habits reduce future rot. When writing, prefer links to stable, versioned documentation over blog posts and marketing pages, which move most often; the crawl data showed vendor blog links broke at four times the rate of versioned docs links. And for citations that must survive, submit the page to an archive service at the time of writing, so an archived copy exists from the day the link is added rather than whatever snapshot happened to be taken later. A small pre-commit hook can do the submission automatically for new external links in changed Markdown files.",[32,1129,1131],{"id":1130},"pitfalls-rollback","Pitfalls & Rollback",[37,1133,1134,1140,1146,1152,1158],{},[40,1135,1136,1139],{},[801,1137,1138],{},"Crawling as a bot that looks like an attack."," High concurrency without a user agent gets you blocked. Crawl politely and identify yourself.",[40,1141,1142,1145],{},[801,1143,1144],{},"Alerting on external breakage."," It is gradual and not urgent; file issues instead.",[40,1147,1148,1151],{},[801,1149,1150],{},"One issue per link."," Two hundred issues is noise. Group by domain.",[40,1153,1154,1157],{},[801,1155,1156],{},"Checking only the build."," Production has redirects, headers and CDN rules the build does not; crawl the live site.",[40,1159,1160,1163],{},[801,1161,1162],{},"Rollback:"," the crawl is a scheduled workflow. Disable the schedule to stop it; issues already filed remain as a record.",[32,1165,1167],{"id":1166},"conclusion","Conclusion",[14,1169,1170],{},"A weekly crawl from the sitemap, split into urgent internal failures and gradual external rot, filed as grouped and deduplicated issues, and tuned until false positives are rare, turns link rot from an invisible decay into a forty-minute weekly chore. On a 2,000-page docs site, 212 broken external links fell to 14 open issues within six months, and new breakage was fixed in a median of nine days rather than whenever a reader happened to complain.",[32,1172,1174],{"id":1173},"faq","FAQ",[1176,1177,1179],"h3",{"id":1178},"if-links-are-checked-in-pull-requests-why-crawl-production-too","If links are checked in pull requests, why crawl production too?",[14,1181,1182],{},"Pull-request checks catch links you break. A scheduled crawl catches links that break on their own, mostly external pages that move or disappear, plus production-only problems such as redirects and CDN rules that differ from the build.",[1176,1184,1186],{"id":1185},"how-often-should-the-crawl-run","How often should the crawl run?",[14,1188,1189],{},"Weekly for external links, which rot slowly, and daily for internal links on sites that deploy often. A weekly full crawl of a 2,000-page site with rate limiting took about 14 minutes.",[1176,1191,1193],{"id":1192},"how-do-i-handle-sites-that-block-link-checkers","How do I handle sites that block link checkers?",[14,1195,1196],{},"Some sites return 403 or 429 to automated clients. Send a realistic user agent, respect rate limits, retry with backoff, and keep an allow-list of domains known to block checkers so they are verified manually instead of reported as broken.",[1176,1198,1200],{"id":1199},"what-should-happen-to-a-broken-external-link","What should happen to a broken external link?",[14,1202,1203],{},"Replace it with the moved page if it exists, link an archived copy if the content matters, or remove the link and adjust the text. Track each as an issue so the fix is owned and visible.",[32,1205,1207],{"id":1206},"related","Related",[37,1209,1210,1219,1224,1231,1238],{},[40,1211,1212,1215,1216,1218],{},[801,1213,1214],{},"Parent:"," ",[21,1217,24],{"href":23}," — the other monitoring signals.",[40,1220,1221,1223],{},[21,1222,29],{"href":28}," — catching the links you break.",[40,1225,1226,1230],{},[21,1227,1229],{"href":1228},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge\u002F","Logging 404s at the Edge"," — broken links pointing into your site.",[40,1232,1233,1237],{},[21,1234,1236],{"href":1235},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fkeeping-redirects-working-after-an-ssg-migration\u002F","Keeping Redirects Working After an SSG Migration"," — preventing internal breakage in the first place.",[40,1239,1240,1244],{},[21,1241,1243],{"href":1242},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fscheduling-content-publication-with-cron-triggered-builds\u002F","Scheduling Content Publication with Cron-Triggered Builds"," — other scheduled jobs in the same workflow style.",[1246,1247,1248],"style",{},"html pre.shiki code .sScJk, html code.shiki .sScJk{--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .sj4cs, html code.shiki .sj4cs{--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}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 .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);}html pre.shiki code .sJ8bj, html code.shiki .sJ8bj{--shiki-default:#6A737D;--shiki-dark:#6A737D}html pre.shiki code .s4XuR, html code.shiki .s4XuR{--shiki-default:#E36209;--shiki-dark:#FFAB70}html pre.shiki code .s9eBZ, html code.shiki .s9eBZ{--shiki-default:#22863A;--shiki-dark:#85E89D}",{"title":67,"searchDepth":108,"depth":108,"links":1250},[1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1267],{"id":34,"depth":108,"text":35},{"id":56,"depth":108,"text":57},{"id":396,"depth":108,"text":397},{"id":658,"depth":108,"text":659},{"id":795,"depth":108,"text":796},{"id":823,"depth":108,"text":824},{"id":957,"depth":108,"text":958},{"id":1047,"depth":108,"text":1048},{"id":1130,"depth":108,"text":1131},{"id":1166,"depth":108,"text":1167},{"id":1173,"depth":108,"text":1174,"children":1262},[1263,1264,1265,1266],{"id":1178,"depth":132,"text":1179},{"id":1185,"depth":132,"text":1186},{"id":1192,"depth":132,"text":1193},{"id":1199,"depth":132,"text":1200},{"id":1206,"depth":108,"text":1207},[1269,1272,1275,1276],{"name":1270,"item":1271},"Home","\u002F",{"name":1273,"item":1274},"Production-Ready Deployment & CI\u002FCD Workflows","\u002Fproduction-ready-deployment-cicd-workflows\u002F",{"name":24,"item":23},{"name":5,"item":1277},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule\u002F","2026-09-18","Run a weekly crawl of a live static site with lychee, separate internal from external breakage, track link rot as issues, and keep false positives low.","md",[1282,1283,1284,1285],{"q":1179,"a":1182},{"q":1186,"a":1189},{"q":1193,"a":1196},{"q":1200,"a":1203},{},true,"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule",{"title":5,"description":1279},"production-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Fcrawling-for-broken-links-on-a-schedule\u002Findex","article","Vm9bX4Z1LRUbckVXYX2lqs7J3xt1sDHBnbU-RlB12qs",[1294,1297,1300,1303,1306,1309,1312,1315,1318,1321,1324,1327,1330,1333,1336,1339,1342,1345,1348,1351,1354,1357,1360,1363,1366,1369,1372,1375,1378,1380,1383,1386,1389,1392,1395,1398,1401,1404,1407,1410,1413,1416,1419,1422,1425,1428,1431,1434,1437,1440,1443,1446,1449,1452,1455,1458,1461,1464,1467,1470,1473,1476,1479,1482,1485,1488,1491,1494,1497,1500,1503,1506,1509,1512,1515,1518,1521,1524,1527,1530,1533,1536,1539,1542,1545,1548,1551,1554,1557,1560,1563,1566,1569,1572,1575,1578,1581,1584,1587,1590,1593,1596,1599,1602,1605,1608,1611,1614,1617,1620,1623,1626,1629,1632,1635,1638,1641,1644,1647,1649,1652,1655,1658,1661,1664,1667,1670,1673,1676,1679,1682,1685,1688,1691,1694,1697,1700,1703,1706,1709,1712,1715,1716,1718,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747,1750,1753,1756,1759,1762,1765,1768,1771,1774,1777,1780,1783,1786,1789,1792,1795,1798,1801,1804,1807,1810,1813,1816,1819,1822,1825,1828,1831,1834],{"path":1295,"title":1296},"\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":1298,"title":1299},"\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":1301,"title":1302},"\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":1304,"title":1305},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites","Astro vs Eleventy for Documentation Sites",{"path":1307,"title":1308},"\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":1310,"title":1311},"\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":1313,"title":1314},"\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":1316,"title":1317},"\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":1319,"title":1320},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress","Docs Frameworks: Docusaurus, Starlight and VitePress",{"path":1322,"title":1323},"\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":1325,"title":1326},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmigrating-from-mkdocs-to-starlight","Migrating from MkDocs to Starlight",{"path":1328,"title":1329},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus","Versioned Documentation with Docusaurus",{"path":1331,"title":1332},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fvitepress-for-library-documentation","VitePress for Library Documentation",{"path":1334,"title":1335},"\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":1337,"title":1338},"\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":1340,"title":1341},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories","Hugo Build Times for Large Repositories",{"path":1343,"title":1344},"\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":1346,"title":1347},"\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":1349,"title":1350},"\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":1352,"title":1353},"\u002Fchoosing-the-right-static-site-generator-for-production","Choosing the Right Static Site Generator for Production",{"path":1355,"title":1356},"\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":1358,"title":1359},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem","Jekyll Plugin Ecosystem",{"path":1361,"title":1362},"\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":1364,"title":1365},"\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":1367,"title":1368},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fspeeding-up-slow-jekyll-builds","Speeding Up Slow Jekyll Builds",{"path":1370,"title":1371},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fupgrading-jekyll-and-ruby-versions-safely","Upgrading Jekyll and Ruby Versions Safely",{"path":1373,"title":1374},"\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":1376,"title":1377},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators","Migrating Between Static Site Generators",{"path":1379,"title":1236},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fkeeping-redirects-working-after-an-ssg-migration",{"path":1381,"title":1382},"\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":1384,"title":1385},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-gatsby-to-astro","Migrating from Gatsby to Astro",{"path":1387,"title":1388},"\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":1390,"title":1391},"\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":1393,"title":1394},"\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":1396,"title":1397},"\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":1399,"title":1400},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites","Next.js Static Export for Content Sites",{"path":1402,"title":1403},"\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":1405,"title":1406},"\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":1408,"title":1409},"\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":1411,"title":1412},"\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":1414,"title":1415},"\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":1417,"title":1418},"\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":1420,"title":1421},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites","Search for Static Sites",{"path":1423,"title":1424},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Findexing-hugo-sites-with-pagefind","Indexing Hugo Sites with Pagefind",{"path":1426,"title":1427},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fmultilingual-search-on-static-sites","Multilingual Search on Static Sites",{"path":1429,"title":1430},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fpagefind-vs-algolia-docsearch","Pagefind vs Algolia DocSearch",{"path":1432,"title":1433},"\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":1435,"title":1436},"\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":1438,"title":1439},"\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":1441,"title":1442},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults","Evaluating SSG Accessibility Defaults",{"path":1444,"title":1445},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix","SSG Framework Selection Matrix",{"path":1447,"title":1448},"\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":1450,"title":1451},"\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":1453,"title":1454},"\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":1456,"title":1457},"\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":1459,"title":1460},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs","CDN Caching Rules for SSGs",{"path":1462,"title":1463},"\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":1465,"title":1466},"\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":1468,"title":1469},"\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":1471,"title":1472},"\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":1474,"title":1475},"\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":1477,"title":1478},"\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":1480,"title":1481},"\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":1483,"title":1484},"\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":1486,"title":1487},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites","Cumulative Layout Shift Fixes for Static Sites",{"path":1489,"title":1490},"\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":1492,"title":1493},"\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":1495,"title":1496},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Ffont-display-optional-vs-swap","font-display: optional vs swap",{"path":1498,"title":1499},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites","Font Loading Strategies for Static Sites",{"path":1501,"title":1502},"\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":1504,"title":1505},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fpreloading-fonts-without-double-downloads","Preloading Fonts Without Double Downloads",{"path":1507,"title":1508},"\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":1510,"title":1511},"\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":1513,"title":1514},"\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":1516,"title":1517},"\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":1519,"title":1520},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro","Image Optimization Pipelines in Astro",{"path":1522,"title":1523},"\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":1525,"title":1526},"\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":1528,"title":1529},"\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":1531,"title":1532},"\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":1534,"title":1535},"\u002Fperformance-optimization-core-web-vitals-for-ssgs","Core Web Vitals Optimization for SSGs",{"path":1537,"title":1538},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance","Astro Islands vs Full Hydration Performance",{"path":1540,"title":1541},"\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":1543,"title":1544},"\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":1546,"title":1547},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering","JavaScript Hydration & Partial Rendering",{"path":1549,"title":1550},"\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":1552,"title":1553},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Freplacing-react-islands-with-web-components","Replacing React Islands with Web Components",{"path":1555,"title":1556},"\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":1558,"title":1559},"\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":1561,"title":1562},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites","Largest Contentful Paint Optimization for Static Sites",{"path":1564,"title":1565},"\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":1567,"title":1568},"\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":1570,"title":1571},"\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":1573,"title":1574},"\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":1576,"title":1577},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci","Performance Budgets and Lighthouse CI",{"path":1579,"title":1580},"\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":1582,"title":1583},"\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":1585,"title":1586},"\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":1588,"title":1589},"\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":1591,"title":1592},"\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":1594,"title":1595},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fauditing-unused-preloads","Auditing Unused Preloads",{"path":1597,"title":1598},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed","Resource Hints and Navigation Speed",{"path":1600,"title":1601},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Finstant-navigation-with-speculation-rules","Instant Navigation with Speculation Rules",{"path":1603,"title":1604},"\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":1606,"title":1607},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fprefetching-links-in-astro","Prefetching Links in Astro",{"path":1609,"title":1610},"\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":1612,"title":1613},"\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":1615,"title":1616},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites","Third-Party Script Performance on Static Sites",{"path":1618,"title":1619},"\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":1621,"title":1622},"\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":1624,"title":1625},"\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":1627,"title":1628},"\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":1630,"title":1631},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fautomating-eleventy-deployments-with-cloudflare-pages","Automating Eleventy Deployments on Cloudflare Pages",{"path":1633,"title":1634},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fconfiguring-redirects-on-cloudflare-pages","Configuring Redirects on Cloudflare Pages",{"path":1636,"title":1637},"\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":1639,"title":1640},"\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":1642,"title":1643},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup","Cloudflare Pages Edge Caching Setup",{"path":1645,"title":1646},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fmigrating-from-cloudflare-pages-to-workers-static-assets","Migrating from Cloudflare Pages to Workers Static Assets",{"path":1648,"title":29},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests",{"path":1650,"title":1651},"\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":1653,"title":1654},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci","Editorial Checks with Vale in CI",{"path":1656,"title":1657},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams","Content Workflows for Documentation Teams",{"path":1659,"title":1660},"\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":1662,"title":1663},"\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":1665,"title":1666},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fbuilding-astro-sites-with-github-actions","Building Astro Sites with GitHub Actions",{"path":1668,"title":1669},"\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":1671,"title":1672},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-github-pages-with-actions","Deploying to GitHub Pages with Actions",{"path":1674,"title":1675},"\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":1677,"title":1678},"\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":1680,"title":1681},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds","GitHub Actions for Automated SSG Builds",{"path":1683,"title":1684},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fmatrix-builds-for-multi-site-monorepos","Matrix Builds for Multi-Site Monorepos",{"path":1686,"title":1687},"\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":1689,"title":1690},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fenabling-incremental-builds-in-eleventy","Enabling Incremental Builds in Eleventy",{"path":1692,"title":1693},"\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":1695,"title":1696},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs","Incremental Builds and Build Caching for SSGs",{"path":1698,"title":1699},"\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":1701,"title":1702},"\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":1704,"title":1705},"\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":1707,"title":1708},"\u002Fproduction-ready-deployment-cicd-workflows","Production-Ready Deployment & CI\u002FCD for SSGs",{"path":1710,"title":1711},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Falerting-on-cache-hit-ratio-drops","Alerting on Cache Hit Ratio Drops",{"path":1713,"title":1714},"\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":1288,"title":5},{"path":1717,"title":24},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production",{"path":1719,"title":1229},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge",{"path":1721,"title":1722},"\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":1724,"title":1725},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fconfiguring-vercel-for-hugo-and-eleventy","Configuring Vercel for Hugo and Eleventy",{"path":1727,"title":1728},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies","Netlify vs Vercel Deployment Strategies",{"path":1730,"title":1731},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-build-hooks-for-content-updates","Netlify Build Hooks for Content Updates",{"path":1733,"title":1734},"\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":1736,"title":1737},"\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":1739,"title":1740},"\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":1742,"title":1743},"\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":1745,"title":1746},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fcleaning-up-stale-preview-deployments","Cleaning Up Stale Preview Deployments",{"path":1748,"title":1749},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests","Preview Environments for Pull Requests",{"path":1751,"title":1752},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpassword-protecting-preview-deployments","Password-Protecting Preview Deployments",{"path":1754,"title":1755},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpreviewing-headless-cms-drafts","Previewing Headless CMS Drafts",{"path":1757,"title":1758},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys","Visual Regression Testing on Preview Deploys",{"path":1760,"title":1761},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fatomic-deploys-vs-incremental-uploads","Atomic Deploys vs Incremental Uploads",{"path":1763,"title":1764},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fcanary-releases-for-static-sites","Canary Releases for Static Sites",{"path":1766,"title":1767},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Ffeature-flags-on-static-sites","Feature Flags on Static Sites",{"path":1769,"title":1770},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites","Rollbacks and Deploy Safety for Static Sites",{"path":1772,"title":1773},"\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":1775,"title":1776},"\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":1778,"title":1779},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fauditing-npm-dependencies-in-ssg-pipelines","Auditing npm Dependencies in SSG Pipelines",{"path":1781,"title":1782},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fenabling-hsts-and-preload-safely","Enabling HSTS and Preload Safely",{"path":1784,"title":1785},"\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":1787,"title":1788},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites","Security Headers and Hardening for Static Sites",{"path":1790,"title":1791},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsecuring-deploy-credentials-with-github-oidc","Securing Deploy Credentials with GitHub OIDC",{"path":1793,"title":1794},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsubresource-integrity-for-third-party-assets","Subresource Integrity for Third-Party Assets",{"path":1796,"title":1797},"\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":1799,"title":1800},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fclean-urls-and-trailing-slashes-on-s3","Clean URLs and Trailing Slashes on S3",{"path":1802,"title":1803},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fcloudfront-functions-for-redirects","CloudFront Functions for Redirects",{"path":1805,"title":1806},"\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":1808,"title":1809},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites","Self-Hosting Static Sites on S3, Nginx and Caddy",{"path":1811,"title":1812},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-caddy","Serving a Static Site with Caddy",{"path":1814,"title":1815},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-nginx","Serving a Static Site with Nginx",{"path":1817,"title":1818},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fzero-downtime-deploys-with-symlink-swaps","Zero-Downtime Deploys with Symlink Swaps",{"path":1820,"title":1821},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fadding-a-contact-form-with-cloudflare-workers","Adding a Contact Form with Cloudflare Workers",{"path":1823,"title":1824},"\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":1826,"title":1827},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites","Serverless Functions for Static Sites",{"path":1829,"title":1830},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers","Netlify Functions vs Cloudflare Workers",{"path":1832,"title":1833},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fprotecting-a-static-site-behind-authentication","Protecting a Static Site Behind Authentication",{"path":1835,"title":1836},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fproxying-third-party-apis-from-an-edge-function","Proxying Third-Party APIs from an Edge Function",1789722847866]