[{"data":1,"prerenderedAt":1740},["ShallowReactive",2],{"page:\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults":3,"all-docs-nav":1199},{"id":4,"title":5,"body":6,"breadcrumb":1172,"dateModified":1182,"datePublished":1182,"description":1183,"extension":1184,"faq":1185,"meta":1192,"navigation":1193,"path":1194,"seo":1195,"slug":12,"stem":1196,"type":1197,"__hash__":1198},"content\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults\u002Findex.md","Evaluating SSG Accessibility Defaults",{"type":7,"value":8,"toc":1153},"minimark",[9,13,17,26,31,49,53,56,424,428,431,455,459,478,614,618,621,713,842,845,849,885,985,989,1013,1017,1020,1024,1066,1070,1073,1077,1082,1085,1089,1092,1096,1099,1103,1106,1110,1149],[10,11,5],"h1",{"id":12},"evaluating-ssg-accessibility-defaults",[14,15,16],"p",{},"Accessibility is usually treated as something a team adds after launch. In practice it is largely decided before launch, by the theme or starter the site is built on. The header markup, the sidebar's keyboard behaviour, the focus styles, the contrast of the code highlighting theme, the tab component for code samples — each is written once in a theme and repeated on every page. A good default gives a thousand accessible pages for free; a bad one produces a thousand issues that each cost a little to fix and are expensive to find.",[14,18,19,20,25],{},"This guide gives a two-hour evaluation procedure and applies it to the default themes of five options — Starlight, Docusaurus, VitePress, the Hugo Docsy theme and an Eleventy starter — on the same content. It adds the accessibility axis to the ",[21,22,24],"a",{"href":23},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002F","SSG Framework Selection Matrix",".",[27,28,30],"h2",{"id":29},"prerequisites","Prerequisites",[32,33,34,38,46],"ul",{},[35,36,37],"li",{},"Each candidate built with a representative sample of real content: a long guide, a reference page with tables, a page with tabbed code samples, the homepage and the 404 page.",[35,39,40,41,45],{},"axe-core (via the browser extension, ",[42,43,44],"code",{},"@axe-core\u002Fcli"," or Playwright), a keyboard and one screen reader (VoiceOver, NVDA or Orca).",[35,47,48],{},"About two hours per candidate.",[27,50,52],{"id":51},"step-1-automated-scan-in-both-colour-schemes","Step 1: Automated Scan in Both Colour Schemes",[14,54,55],{},"Run axe-core against the five pages in light and dark mode. Dark themes are where contrast regressions hide, because they receive less testing.",[57,58,63],"pre",{"className":59,"code":60,"language":61,"meta":62,"style":62},"language-js shiki shiki-themes github-light github-dark","\u002F\u002F scripts\u002Fa11y-scan.mjs (Playwright + axe-core)\nimport { chromium } from 'playwright';\nimport AxeBuilder from '@axe-core\u002Fplaywright';\nconst pages = ['\u002F', '\u002Fguides\u002Fdeploying\u002F', '\u002Freference\u002Fconfig\u002F', '\u002Fguides\u002Finstall\u002F', '\u002Fnope\u002F'];\nconst browser = await chromium.launch();\nfor (const scheme of ['light', 'dark']) {\n  const ctx = await browser.newContext({ colorScheme: scheme });\n  for (const p of pages) {\n    const page = await ctx.newPage();\n    await page.goto(`http:\u002F\u002Flocalhost:4321${p}`);\n    const { violations } = await new AxeBuilder({ page }).withTags(['wcag2a', 'wcag2aa']).analyze();\n    console.log(scheme, p, violations.map((v) => `${v.id}×${v.nodes.length}`).join(' '));\n  }\n}\n","js","",[42,64,65,74,95,110,153,176,206,228,246,267,293,343,412,418],{"__ignoreMap":62},[66,67,70],"span",{"class":68,"line":69},"line",1,[66,71,73],{"class":72},"sJ8bj","\u002F\u002F scripts\u002Fa11y-scan.mjs (Playwright + axe-core)\n",[66,75,77,81,85,88,92],{"class":68,"line":76},2,[66,78,80],{"class":79},"szBVR","import",[66,82,84],{"class":83},"sVt8B"," { chromium } ",[66,86,87],{"class":79},"from",[66,89,91],{"class":90},"sZZnC"," 'playwright'",[66,93,94],{"class":83},";\n",[66,96,98,100,103,105,108],{"class":68,"line":97},3,[66,99,80],{"class":79},[66,101,102],{"class":83}," AxeBuilder ",[66,104,87],{"class":79},[66,106,107],{"class":90}," '@axe-core\u002Fplaywright'",[66,109,94],{"class":83},[66,111,113,116,120,123,126,129,132,135,137,140,142,145,147,150],{"class":68,"line":112},4,[66,114,115],{"class":79},"const",[66,117,119],{"class":118},"sj4cs"," pages",[66,121,122],{"class":79}," =",[66,124,125],{"class":83}," [",[66,127,128],{"class":90},"'\u002F'",[66,130,131],{"class":83},", ",[66,133,134],{"class":90},"'\u002Fguides\u002Fdeploying\u002F'",[66,136,131],{"class":83},[66,138,139],{"class":90},"'\u002Freference\u002Fconfig\u002F'",[66,141,131],{"class":83},[66,143,144],{"class":90},"'\u002Fguides\u002Finstall\u002F'",[66,146,131],{"class":83},[66,148,149],{"class":90},"'\u002Fnope\u002F'",[66,151,152],{"class":83},"];\n",[66,154,156,158,161,163,166,169,173],{"class":68,"line":155},5,[66,157,115],{"class":79},[66,159,160],{"class":118}," browser",[66,162,122],{"class":79},[66,164,165],{"class":79}," await",[66,167,168],{"class":83}," chromium.",[66,170,172],{"class":171},"sScJk","launch",[66,174,175],{"class":83},"();\n",[66,177,179,182,185,187,190,193,195,198,200,203],{"class":68,"line":178},6,[66,180,181],{"class":79},"for",[66,183,184],{"class":83}," (",[66,186,115],{"class":79},[66,188,189],{"class":118}," scheme",[66,191,192],{"class":79}," of",[66,194,125],{"class":83},[66,196,197],{"class":90},"'light'",[66,199,131],{"class":83},[66,201,202],{"class":90},"'dark'",[66,204,205],{"class":83},"]) {\n",[66,207,209,212,215,217,219,222,225],{"class":68,"line":208},7,[66,210,211],{"class":79},"  const",[66,213,214],{"class":118}," ctx",[66,216,122],{"class":79},[66,218,165],{"class":79},[66,220,221],{"class":83}," browser.",[66,223,224],{"class":171},"newContext",[66,226,227],{"class":83},"({ colorScheme: scheme });\n",[66,229,231,234,236,238,241,243],{"class":68,"line":230},8,[66,232,233],{"class":79},"  for",[66,235,184],{"class":83},[66,237,115],{"class":79},[66,239,240],{"class":118}," p",[66,242,192],{"class":79},[66,244,245],{"class":83}," pages) {\n",[66,247,249,252,255,257,259,262,265],{"class":68,"line":248},9,[66,250,251],{"class":79},"    const",[66,253,254],{"class":118}," page",[66,256,122],{"class":79},[66,258,165],{"class":79},[66,260,261],{"class":83}," ctx.",[66,263,264],{"class":171},"newPage",[66,266,175],{"class":83},[66,268,270,273,276,279,282,285,287,290],{"class":68,"line":269},10,[66,271,272],{"class":79},"    await",[66,274,275],{"class":83}," page.",[66,277,278],{"class":171},"goto",[66,280,281],{"class":83},"(",[66,283,284],{"class":90},"`http:\u002F\u002Flocalhost:4321${",[66,286,14],{"class":83},[66,288,289],{"class":90},"}`",[66,291,292],{"class":83},");\n",[66,294,296,298,301,304,307,310,312,315,318,321,324,327,330,332,335,338,341],{"class":68,"line":295},11,[66,297,251],{"class":79},[66,299,300],{"class":83}," { ",[66,302,303],{"class":118},"violations",[66,305,306],{"class":83}," } ",[66,308,309],{"class":79},"=",[66,311,165],{"class":79},[66,313,314],{"class":79}," new",[66,316,317],{"class":171}," AxeBuilder",[66,319,320],{"class":83},"({ page }).",[66,322,323],{"class":171},"withTags",[66,325,326],{"class":83},"([",[66,328,329],{"class":90},"'wcag2a'",[66,331,131],{"class":83},[66,333,334],{"class":90},"'wcag2aa'",[66,336,337],{"class":83},"]).",[66,339,340],{"class":171},"analyze",[66,342,175],{"class":83},[66,344,346,349,352,355,358,361,365,368,371,374,376,378,381,384,386,388,391,393,396,398,401,404,406,409],{"class":68,"line":345},12,[66,347,348],{"class":83},"    console.",[66,350,351],{"class":171},"log",[66,353,354],{"class":83},"(scheme, p, violations.",[66,356,357],{"class":171},"map",[66,359,360],{"class":83},"((",[66,362,364],{"class":363},"s4XuR","v",[66,366,367],{"class":83},") ",[66,369,370],{"class":79},"=>",[66,372,373],{"class":90}," `${",[66,375,364],{"class":83},[66,377,25],{"class":90},[66,379,380],{"class":83},"id",[66,382,383],{"class":90},"}×${",[66,385,364],{"class":83},[66,387,25],{"class":90},[66,389,390],{"class":83},"nodes",[66,392,25],{"class":90},[66,394,395],{"class":118},"length",[66,397,289],{"class":90},[66,399,400],{"class":83},").",[66,402,403],{"class":171},"join",[66,405,281],{"class":83},[66,407,408],{"class":90},"' '",[66,410,411],{"class":83},"));\n",[66,413,415],{"class":68,"line":414},13,[66,416,417],{"class":83},"  }\n",[66,419,421],{"class":68,"line":420},14,[66,422,423],{"class":83},"}\n",[27,425,427],{"id":426},"step-2-keyboard-and-structure-pass","Step 2: Keyboard and Structure Pass",[14,429,430],{},"Automated tools miss what matters most for keyboard users. With the mouse put away, check on each page:",[432,433,434,437,440,443,446,449,452],"ol",{},[35,435,436],{},"The first Tab reveals a skip link that moves focus to the main content.",[35,438,439],{},"Focus is always visible, with a style that meets contrast against the background.",[35,441,442],{},"Sidebar sections expand and collapse with Enter\u002FSpace; the current page is announced.",[35,444,445],{},"Code tabs follow the ARIA tabs pattern: arrow keys move between tabs, Tab moves into the panel.",[35,447,448],{},"Copy buttons are reachable, labelled, and announce success.",[35,450,451],{},"Scrollable code blocks are focusable (so keyboard users can scroll them) but do not trap focus.",[35,453,454],{},"The search dialog traps focus while open, closes with Escape and returns focus to its trigger.",[27,456,458],{"id":457},"step-3-a-quick-screen-reader-pass","Step 3: A Quick Screen-Reader Pass",[14,460,461,462,464,465,131,468,131,471,131,474,477],{},"On one long guide, navigate by headings and by landmarks. Check that there is exactly one ",[42,463,10],{},", headings do not skip levels, landmarks (",[42,466,467],{},"banner",[42,469,470],{},"navigation",[42,472,473],{},"main",[42,475,476],{},"contentinfo",") exist and navigation landmarks have distinct labels (\"Main\", \"Sidebar\", \"On this page\"). Listen to a code block and a table: tables need header cells; code blocks should not be announced as a stream of separate spans.",[479,480,481,610],"figure",{},[482,483,490,491,490,495,490,499,490,506],"svg",{"viewBox":484,"role":485,"ariaLabelledBy":486,"xmlns":489},"0 0 760 290","img",[487,488],"a11y-proc-title","a11y-proc-desc","http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","\n  ",[492,493,494],"title",{"id":487},"The two-hour evaluation procedure",[496,497,498],"desc",{"id":488},"Three stages across five sample pages. Automated axe-core scans in light and dark mode take about 20 minutes and catch contrast, alt text and ARIA errors. A keyboard pass of about 60 minutes checks skip link, focus visibility, sidebar, code tabs, copy buttons, scrollable regions and search dialog. A screen-reader pass of about 40 minutes checks headings, landmarks, tables and code blocks.",[500,501],"rect",{"x":502,"y":502,"width":503,"height":504,"fill":505},"0","760","290","#ffffff",[507,508,510,511,510,519,510,529,510,535,510,541,510,546,510,550,510,554,510,558,510,562,510,565,510,568,510,571,510,574,510,577,510,580,510,586,510,590,510,593,510,597,510,600,510,603,510,606,490],"g",{"style":509},"font-family:system-ui, sans-serif;font-size:12px","\n    ",[512,513,518],"text",{"x":514,"y":515,"fill":516,"style":517},"380","28","#1f2937","font-size:16px;font-weight:700;text-anchor:middle","Three passes, five pages, about two hours per candidate",[500,520],{"x":521,"y":522,"width":523,"height":524,"rx":525,"fill":526,"opacity":527,"stroke":526,"style":528},"30","56","220","200","12","#1982c4","0.08","stroke-width:1.5px",[512,530,534],{"x":531,"y":532,"fill":516,"style":533},"140","82","font-size:14px;font-weight:700;text-anchor:middle","1 · axe-core",[512,536,540],{"x":531,"y":537,"fill":538,"style":539},"102","#556071","font-size:11px;text-anchor:middle","~20 min · light + dark",[512,542,545],{"x":543,"y":544,"fill":516},"50","134","contrast",[512,547,549],{"x":543,"y":548,"fill":516},"158","alt text, link names",[512,551,553],{"x":543,"y":552,"fill":516},"182","ARIA misuse",[512,555,557],{"x":543,"y":556,"fill":516},"206","duplicate IDs",[500,559],{"x":560,"y":522,"width":523,"height":524,"rx":525,"fill":561,"opacity":527,"stroke":561,"style":528},"270","#6a4c93",[512,563,564],{"x":514,"y":532,"fill":516,"style":533},"2 · keyboard",[512,566,567],{"x":514,"y":537,"fill":538,"style":539},"~60 min",[512,569,570],{"x":504,"y":544,"fill":516},"skip link, focus visible",[512,572,573],{"x":504,"y":548,"fill":516},"sidebar, code tabs",[512,575,576],{"x":504,"y":552,"fill":516},"copy buttons",[512,578,579],{"x":504,"y":556,"fill":516},"search dialog focus",[500,581],{"x":582,"y":522,"width":523,"height":524,"rx":525,"fill":583,"opacity":584,"stroke":585,"style":528},"510","#8ac926","0.1","#5a8a16",[512,587,589],{"x":588,"y":532,"fill":516,"style":533},"620","3 · screen reader",[512,591,592],{"x":588,"y":537,"fill":538,"style":539},"~40 min · one long page",[512,594,596],{"x":595,"y":544,"fill":516},"530","one h1, heading order",[512,598,599],{"x":595,"y":548,"fill":516},"labelled landmarks",[512,601,602],{"x":595,"y":552,"fill":516},"table headers",[512,604,605],{"x":595,"y":556,"fill":516},"code block reading",[512,607,609],{"x":514,"y":608,"fill":538,"style":539},"280","Automation finds the countable issues; people find the ones that block a task",[611,612,613],"figcaption",{},"The keyboard pass takes the longest and finds the issues that most often make a docs site unusable.",[27,615,617],{"id":616},"results-on-five-defaults","Results on Five Defaults",[14,619,620],{},"The five candidates with default themes and the same content. Automated counts are distinct axe rule violations across the ten page-and-scheme combinations; manual findings are failures of the seven keyboard checks and the structure checks.",[622,623,624,643],"table",{},[625,626,627],"thead",{},[628,629,630,634,637,640],"tr",{},[631,632,633],"th",{},"Default",[631,635,636],{},"axe violations (light \u002F dark)",[631,638,639],{},"Keyboard checks failed (of 7)",[631,641,642],{},"Structure issues",[644,645,646,659,672,686,700],"tbody",{},[628,647,648,652,655,657],{},[649,650,651],"td",{},"Starlight",[649,653,654],{},"0 \u002F 0",[649,656,502],{},[649,658,502],{},[628,660,661,664,667,670],{},[649,662,663],{},"Docusaurus classic",[649,665,666],{},"1 \u002F 3",[649,668,669],{},"1 (code block scroll not focusable)",[649,671,502],{},[628,673,674,677,680,683],{},[649,675,676],{},"VitePress default",[649,678,679],{},"0 \u002F 2",[649,681,682],{},"1 (code group tabs lack arrow keys)",[649,684,685],{},"1 (sidebar nav unlabelled)",[628,687,688,691,694,697],{},[649,689,690],{},"Hugo Docsy",[649,692,693],{},"3 \u002F 6",[649,695,696],{},"2 (no skip link; focus style low contrast)",[649,698,699],{},"1 (heading skip in sidebar)",[628,701,702,705,708,711],{},[649,703,704],{},"Eleventy starter (base blog)",[649,706,707],{},"2 \u002F n\u002Fa (no dark mode)",[649,709,710],{},"1 (no skip link)",[649,712,502],{},[479,714,715,839],{},[482,716,490,720,490,723,490,726,490,728],{"viewBox":484,"role":485,"ariaLabelledBy":717,"xmlns":489},[718,719],"a11y-res-title","a11y-res-desc",[492,721,722],{"id":718},"Issues found in each default theme",[496,724,725],{"id":719},"Stacked bars of total issues per default. Starlight 0. Docusaurus 5: 4 automated and 1 keyboard. VitePress 4: 2 automated, 1 keyboard and 1 structure. Hugo Docsy 12: 9 automated, 2 keyboard and 1 structure. Eleventy starter 3: 2 automated and 1 keyboard, with no dark mode to test.",[500,727],{"x":502,"y":502,"width":503,"height":504,"fill":505},[507,729,510,730,510,733,510,738,510,743,510,747,510,751,510,758,510,764,510,769,510,773,510,776,510,778,510,782,510,787,510,790,510,793,510,796,510,799,510,803,510,807,510,810,510,812,510,817,510,820,510,826,510,829,510,832,510,835,490],{"style":509},[512,731,732],{"x":514,"y":515,"fill":516,"style":517},"Issues per default theme, same content",[68,734],{"x1":523,"y1":735,"x2":523,"y2":736,"stroke":737,"style":528},"46","236","#d9e2ef",[512,739,651],{"x":740,"y":741,"fill":516,"style":742},"40","72","font-weight:700",[512,744,502],{"x":745,"y":741,"fill":746,"style":742},"230","#3f6410",[512,748,750],{"x":740,"y":749,"fill":516,"style":742},"110","Docusaurus",[500,752],{"x":523,"y":753,"width":754,"height":755,"fill":526,"opacity":756,"stroke":526,"style":757},"96","120","22","0.25","stroke-width:1px",[500,759],{"x":760,"y":753,"width":521,"height":755,"fill":761,"opacity":762,"stroke":763,"style":757},"340","#ffca3a","0.4","#a97b00",[512,765,768],{"x":766,"y":767,"fill":516,"style":742},"378","112","5",[512,770,772],{"x":740,"y":771,"fill":516,"style":742},"148","VitePress",[500,774],{"x":523,"y":544,"width":775,"height":755,"fill":526,"opacity":756,"stroke":526,"style":757},"60",[500,777],{"x":608,"y":544,"width":521,"height":755,"fill":761,"opacity":762,"stroke":763,"style":757},[500,779],{"x":780,"y":544,"width":521,"height":755,"fill":561,"opacity":781,"stroke":561,"style":757},"310","0.3",[512,783,786],{"x":784,"y":785,"fill":516,"style":742},"348","150","4",[512,788,690],{"x":740,"y":789,"fill":516,"style":742},"186",[500,791],{"x":523,"y":792,"width":560,"height":755,"fill":526,"opacity":756,"stroke":526,"style":757},"172",[500,794],{"x":795,"y":792,"width":775,"height":755,"fill":761,"opacity":762,"stroke":763,"style":757},"490",[500,797],{"x":798,"y":792,"width":521,"height":755,"fill":561,"opacity":781,"stroke":561,"style":757},"550",[512,800,525],{"x":801,"y":802,"fill":516,"style":742},"588","188",[512,804,806],{"x":740,"y":805,"fill":516,"style":742},"224","Eleventy starter",[500,808],{"x":523,"y":809,"width":775,"height":755,"fill":526,"opacity":756,"stroke":526,"style":757},"210",[500,811],{"x":608,"y":809,"width":521,"height":755,"fill":761,"opacity":762,"stroke":763,"style":757},[512,813,816],{"x":814,"y":815,"fill":516,"style":742},"318","226","3",[500,818],{"x":523,"y":819,"width":525,"height":525,"fill":526,"opacity":756,"stroke":526,"style":757},"254",[512,821,825],{"x":822,"y":823,"fill":538,"style":824},"238","264","font-size:11px","automated",[500,827],{"x":828,"y":819,"width":525,"height":525,"fill":761,"opacity":762,"stroke":763,"style":757},"330",[512,830,831],{"x":784,"y":823,"fill":538,"style":824},"keyboard",[500,833],{"x":834,"y":819,"width":525,"height":525,"fill":561,"opacity":781,"stroke":561,"style":757},"430",[512,836,838],{"x":837,"y":823,"fill":538,"style":824},"448","structure",[611,840,841],{},"Dark-mode contrast accounted for most automated findings; every theme that shipped a dark mode had more violations in it than in light mode, except Starlight.",[14,843,844],{},"Every issue found was fixable, most in under an hour; the Docsy findings took about a day in total because two sat in shared partials used across many templates. The point of the evaluation is not to disqualify candidates but to price the fixes into the decision, and to know which ones must land before launch.",[27,846,848],{"id":847},"the-defaults-that-matter-most","The Defaults That Matter Most",[14,850,851,852,856,857,860,861,864,865,868,869,872,873,876,877,880,881,884],{},"Across the five, the same few defaults decided most of the outcome. ",[853,854,855],"strong",{},"Skip link"," — missing in two of five, trivial to add, essential for keyboard users on pages with long sidebars. ",[853,858,859],{},"Focus visibility"," — present everywhere, but low-contrast in one theme's dark mode. ",[853,862,863],{},"Code block handling"," — scrollable ",[42,866,867],{},"\u003Cpre>"," elements must be keyboard-focusable (",[42,870,871],{},"tabindex=\"0\""," with a label) so content wider than the column can be read; this is also a WCAG requirement that axe reports as ",[42,874,875],{},"scrollable-region-focusable",". ",[853,878,879],{},"Code tabs"," — implemented as buttons in some themes, which works, and as a full ARIA tabs pattern in others, which works better. ",[853,882,883],{},"Dark-mode contrast"," — syntax highlighting themes are the usual culprit; comments rendered in dim grey often fall below 4.5:1.",[479,886,887,982],{},[482,888,490,893,490,896,490,899,490,902],{"viewBox":889,"role":485,"ariaLabelledBy":890,"xmlns":489},"0 0 760 260",[891,892],"a11y-def-title","a11y-def-desc",[492,894,895],{"id":891},"How many of the five defaults got each item right",[496,897,898],{"id":892},"Bars out of five themes. Landmarks correct in 5. One h1 in 5. Visible focus in light mode in 5, but in dark mode only 4. Code tabs keyboard-operable in 4. Scrollable code blocks focusable in 3. Skip link present in 3. Dark-mode contrast clean in 2 of the 4 themes that had a dark mode.",[500,900],{"x":502,"y":502,"width":503,"height":901,"fill":505},"260",[507,903,510,904,510,907,510,910,510,914,510,918,510,922,510,926,510,929,510,932,510,936,510,941,510,945,510,948,510,952,510,956,510,959,510,962,510,965,510,969,510,974,510,979,490],{"style":509},[512,905,906],{"x":514,"y":515,"fill":516,"style":517},"Defaults done right, out of five themes",[68,908],{"x1":909,"y1":735,"x2":909,"y2":736,"stroke":737,"style":528},"250",[512,911,913],{"x":740,"y":912,"fill":516},"68","landmarks, one h1",[500,915],{"x":909,"y":522,"width":916,"height":917,"rx":816,"fill":583,"opacity":762,"stroke":585,"style":757},"400","16",[512,919,768],{"x":920,"y":921,"fill":516,"style":742},"658","69",[512,923,925],{"x":740,"y":924,"fill":516},"98","focus visible (light)",[500,927],{"x":909,"y":928,"width":916,"height":917,"rx":816,"fill":583,"opacity":762,"stroke":585,"style":757},"86",[512,930,768],{"x":920,"y":931,"fill":516,"style":742},"99",[512,933,935],{"x":740,"y":934,"fill":516},"128","code tabs keyboard-operable",[500,937],{"x":909,"y":938,"width":939,"height":917,"rx":816,"fill":526,"opacity":940,"stroke":526,"style":757},"116","320","0.28",[512,942,786],{"x":943,"y":944,"fill":516,"style":742},"578","129",[512,946,947],{"x":740,"y":548,"fill":516},"scrollable code focusable",[500,949],{"x":909,"y":950,"width":951,"height":917,"rx":816,"fill":761,"opacity":762,"stroke":763,"style":757},"146","240",[512,953,816],{"x":954,"y":955,"fill":516,"style":742},"498","159",[512,957,958],{"x":740,"y":802,"fill":516},"skip link",[500,960],{"x":909,"y":961,"width":951,"height":917,"rx":816,"fill":761,"opacity":762,"stroke":763,"style":757},"176",[512,963,816],{"x":954,"y":964,"fill":516,"style":742},"189",[512,966,968],{"x":740,"y":967,"fill":516},"218","dark-mode contrast clean",[500,970],{"x":909,"y":556,"width":971,"height":917,"rx":816,"fill":972,"opacity":940,"stroke":973,"style":757},"160","#ff595e","#d83b41",[512,975,978],{"x":976,"y":977,"fill":516,"style":742},"418","219","2 of 4",[512,980,981],{"x":514,"y":909,"fill":538,"style":539},"The basics were universal; the differences were in dark mode, code blocks and skip links",[611,983,984],{},"Structural basics are solved everywhere; check the interactive and dark-mode details, which is where themes differ.",[27,986,988],{"id":987},"beyond-the-theme-content-patterns","Beyond the Theme: Content Patterns",[14,990,991,992,995,996,999,1000,1003,1004,1007,1008,1012],{},"A clean theme can still host inaccessible content, and some content problems originate in how the generator encourages authoring. Three patterns showed up across the sample content. Images added through Markdown without alternative text — the fix is a build check that fails on ",[42,993,994],{},"![](...)"," with empty alt, with an explicit ",[42,997,998],{},"alt=\"\""," convention for decorative images. Diagrams delivered as images of text, which screen readers cannot read — inline SVG with a ",[42,1001,1002],{},"\u003Ctitle>"," and ",[42,1005,1006],{},"\u003Cdesc>",", or a text description next to the image, fixes it. And link text such as \"here\" or \"this page\" repeated many times on a page, which is meaningless when a screen-reader user lists links — a Vale rule flags it in pull requests, as described in ",[21,1009,1011],{"href":1010},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci\u002F","Editorial Checks with Vale in CI",". Each is a content guideline plus an automated check, which is cheaper than finding the same problem on hundreds of pages later.",[27,1014,1016],{"id":1015},"keep-it-tested","Keep It Tested",[14,1018,1019],{},"A default is only a starting point; content and customisations change it. Add the Step 1 scan to CI against the preview deploy, failing on any new violation, and repeat the manual passes when the theme changes. On the Starlight site chosen after this evaluation, the CI scan caught two regressions in its first quarter: an SVG diagram with low-contrast labels in dark mode, and a new callout component whose icon was announced as \"image\" with no label.",[27,1021,1023],{"id":1022},"pitfalls-rollback","Pitfalls & Rollback",[32,1025,1026,1032,1038,1044,1050,1060],{},[35,1027,1028,1031],{},[853,1029,1030],{},"Testing the demo site."," Evaluate with your own content; long tables and code samples expose issues demo pages do not.",[35,1033,1034,1037],{},[853,1035,1036],{},"Light mode only."," Test both colour schemes; dark mode had more violations in four of five themes.",[35,1039,1040,1043],{},[853,1041,1042],{},"Treating a zero axe score as done."," Keyboard and screen-reader checks find the issues that block tasks.",[35,1045,1046,1049],{},[853,1047,1048],{},"Fixing in content instead of templates."," A missing table header fixed page by page will return; fix the component.",[35,1051,1052,1055,1056,1059],{},[853,1053,1054],{},"Ignoring reduced motion."," Animated transitions and auto-playing demos should respect ",[42,1057,1058],{},"prefers-reduced-motion","; check it with the OS setting enabled.",[35,1061,1062,1065],{},[853,1063,1064],{},"Rollback:"," the evaluation changes nothing; the fixes it prompts are ordinary template changes.",[27,1067,1069],{"id":1068},"conclusion","Conclusion",[14,1071,1072],{},"Accessibility on a static site is inherited from its theme far more than it is added later. A two-hour evaluation per candidate — automated scans in both colour schemes, a keyboard pass through navigation and interactive components, and a short screen-reader pass — showed default-theme issue counts from 0 to 12 on identical content. Price the fixes into the choice, land the essential ones before launch, and keep the automated scan in CI so the default you chose stays a good one.",[27,1074,1076],{"id":1075},"faq","FAQ",[1078,1079,1081],"h3",{"id":1080},"is-accessibility-a-property-of-the-generator-or-of-the-theme","Is accessibility a property of the generator or of the theme?",[14,1083,1084],{},"Mostly the theme and the content. Generators decide little about markup, but docs frameworks ship full themes, and starter templates set patterns that teams copy for years. Evaluate the theme or starter you would actually use.",[1078,1086,1088],{"id":1087},"can-automated-tools-find-all-accessibility-problems","Can automated tools find all accessibility problems?",[14,1090,1091],{},"No. Tools such as axe-core find roughly a third to a half of issues, reliably catching contrast, missing alternative text, empty links and ARIA misuse. Keyboard navigation, focus order, reading order and meaningful link text need manual checks.",[1078,1093,1095],{"id":1094},"which-defaults-matter-most-on-documentation-sites","Which defaults matter most on documentation sites?",[14,1097,1098],{},"A skip link, one h1 and a logical heading order, landmarks for navigation and main content, visible focus styles, sufficient contrast in both light and dark themes, keyboard-accessible code tabs and copy buttons, and code blocks that do not trap focus.",[1078,1100,1102],{"id":1101},"how-long-does-an-evaluation-take","How long does an evaluation take?",[14,1104,1105],{},"About two hours per candidate: automated scans of five representative pages in both colour schemes, a keyboard-only pass through navigation and interactive components, and a quick screen-reader pass on one page.",[27,1107,1109],{"id":1108},"related","Related",[32,1111,1112,1121,1128,1135,1142],{},[35,1113,1114,1117,1118,1120],{},[853,1115,1116],{},"Parent:"," ",[21,1119,24],{"href":23}," — accessibility alongside the other axes.",[35,1122,1123,1127],{},[21,1124,1126],{"href":1125},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002F","Docs Frameworks: Docusaurus, Starlight and VitePress"," — three of the themes evaluated.",[35,1129,1130,1134],{},[21,1131,1133],{"href":1132},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fsidebar-navigation-in-astro-and-eleventy\u002F","Sidebar Navigation in Astro and Eleventy"," — building an accessible sidebar yourself.",[35,1136,1137,1141],{},[21,1138,1140],{"href":1139},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys\u002F","Visual Regression Testing on Preview Deploys"," — catching focus and contrast regressions visually.",[35,1143,1144,1148],{},[21,1145,1147],{"href":1146},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Ftotal-cost-of-ownership-for-static-site-generators\u002F","Total Cost of Ownership for Static Site Generators"," — pricing the fixes in.",[1150,1151,1152],"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 .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}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 .s4XuR, html code.shiki .s4XuR{--shiki-default:#E36209;--shiki-dark:#FFAB70}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":62,"searchDepth":76,"depth":76,"links":1154},[1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1171],{"id":29,"depth":76,"text":30},{"id":51,"depth":76,"text":52},{"id":426,"depth":76,"text":427},{"id":457,"depth":76,"text":458},{"id":616,"depth":76,"text":617},{"id":847,"depth":76,"text":848},{"id":987,"depth":76,"text":988},{"id":1015,"depth":76,"text":1016},{"id":1022,"depth":76,"text":1023},{"id":1068,"depth":76,"text":1069},{"id":1075,"depth":76,"text":1076,"children":1166},[1167,1168,1169,1170],{"id":1080,"depth":97,"text":1081},{"id":1087,"depth":97,"text":1088},{"id":1094,"depth":97,"text":1095},{"id":1101,"depth":97,"text":1102},{"id":1108,"depth":76,"text":1109},[1173,1176,1179,1180],{"name":1174,"item":1175},"Home","\u002F",{"name":1177,"item":1178},"Choosing the Right Static Site Generator for Production","\u002Fchoosing-the-right-static-site-generator-for-production\u002F",{"name":24,"item":23},{"name":5,"item":1181},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults\u002F","2026-09-18","Audit what a generator or theme gets right and wrong for accessibility out of the box — landmarks, headings, focus, colour, code blocks — before committing.","md",[1186,1187,1188,1189],{"q":1081,"a":1084},{"q":1088,"a":1091},{"q":1095,"a":1098},{"q":1102,"a":1190},{"About two hours per candidate":1191},"automated scans of five representative pages in both colour schemes, a keyboard-only pass through navigation and interactive components, and a quick screen-reader pass on one page.",{},true,"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults",{"title":5,"description":1183},"choosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults\u002Findex","article","Lq9Q5NtM6zwWBY0aFoNLMApBtZCE3YWVqsCZhVDCWZE",[1200,1203,1206,1209,1212,1215,1217,1220,1223,1225,1228,1231,1234,1237,1240,1243,1246,1249,1252,1255,1257,1260,1263,1266,1269,1272,1275,1278,1281,1284,1287,1290,1293,1296,1299,1302,1305,1308,1311,1314,1317,1320,1323,1326,1329,1332,1335,1338,1341,1344,1345,1347,1350,1353,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,1555,1558,1561,1564,1567,1570,1573,1576,1579,1582,1585,1588,1591,1594,1597,1600,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630,1633,1636,1639,1642,1645,1648,1651,1654,1657,1660,1662,1665,1668,1671,1674,1677,1680,1683,1686,1689,1692,1695,1698,1701,1704,1707,1710,1713,1716,1719,1722,1725,1728,1731,1734,1737],{"path":1201,"title":1202},"\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":1204,"title":1205},"\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":1207,"title":1208},"\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":1210,"title":1211},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites","Astro vs Eleventy for Documentation Sites",{"path":1213,"title":1214},"\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":1216,"title":1133},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites\u002Fsidebar-navigation-in-astro-and-eleventy",{"path":1218,"title":1219},"\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":1221,"title":1222},"\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":1224,"title":1126},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress",{"path":1226,"title":1227},"\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":1229,"title":1230},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmigrating-from-mkdocs-to-starlight","Migrating from MkDocs to Starlight",{"path":1232,"title":1233},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus","Versioned Documentation with Docusaurus",{"path":1235,"title":1236},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fvitepress-for-library-documentation","VitePress for Library Documentation",{"path":1238,"title":1239},"\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":1241,"title":1242},"\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":1244,"title":1245},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories","Hugo Build Times for Large Repositories",{"path":1247,"title":1248},"\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":1250,"title":1251},"\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":1253,"title":1254},"\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":1256,"title":1177},"\u002Fchoosing-the-right-static-site-generator-for-production",{"path":1258,"title":1259},"\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":1261,"title":1262},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem","Jekyll Plugin Ecosystem",{"path":1264,"title":1265},"\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":1267,"title":1268},"\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":1270,"title":1271},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fspeeding-up-slow-jekyll-builds","Speeding Up Slow Jekyll Builds",{"path":1273,"title":1274},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fupgrading-jekyll-and-ruby-versions-safely","Upgrading Jekyll and Ruby Versions Safely",{"path":1276,"title":1277},"\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":1279,"title":1280},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators","Migrating Between Static Site Generators",{"path":1282,"title":1283},"\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":1285,"title":1286},"\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":1288,"title":1289},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-gatsby-to-astro","Migrating from Gatsby to Astro",{"path":1291,"title":1292},"\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":1294,"title":1295},"\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":1297,"title":1298},"\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":1300,"title":1301},"\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":1303,"title":1304},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites","Next.js Static Export for Content Sites",{"path":1306,"title":1307},"\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":1309,"title":1310},"\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":1312,"title":1313},"\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":1315,"title":1316},"\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":1318,"title":1319},"\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":1321,"title":1322},"\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":1324,"title":1325},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites","Search for Static Sites",{"path":1327,"title":1328},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Findexing-hugo-sites-with-pagefind","Indexing Hugo Sites with Pagefind",{"path":1330,"title":1331},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fmultilingual-search-on-static-sites","Multilingual Search on Static Sites",{"path":1333,"title":1334},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fpagefind-vs-algolia-docsearch","Pagefind vs Algolia DocSearch",{"path":1336,"title":1337},"\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":1339,"title":1340},"\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":1342,"title":1343},"\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":1194,"title":5},{"path":1346,"title":24},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix",{"path":1348,"title":1349},"\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":1351,"title":1352},"\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":1354,"title":1147},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Ftotal-cost-of-ownership-for-static-site-generators",{"path":1356,"title":1357},"\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":1359,"title":1360},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs","CDN Caching Rules for SSGs",{"path":1362,"title":1363},"\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":1365,"title":1366},"\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":1368,"title":1369},"\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":1371,"title":1372},"\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":1374,"title":1375},"\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":1377,"title":1378},"\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":1380,"title":1381},"\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":1383,"title":1384},"\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":1386,"title":1387},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites","Cumulative Layout Shift Fixes for Static Sites",{"path":1389,"title":1390},"\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":1392,"title":1393},"\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":1395,"title":1396},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Ffont-display-optional-vs-swap","font-display: optional vs swap",{"path":1398,"title":1399},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites","Font Loading Strategies for Static Sites",{"path":1401,"title":1402},"\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":1404,"title":1405},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fpreloading-fonts-without-double-downloads","Preloading Fonts Without Double Downloads",{"path":1407,"title":1408},"\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":1410,"title":1411},"\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":1413,"title":1414},"\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":1416,"title":1417},"\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":1419,"title":1420},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro","Image Optimization Pipelines in Astro",{"path":1422,"title":1423},"\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":1425,"title":1426},"\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":1428,"title":1429},"\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":1431,"title":1432},"\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":1434,"title":1435},"\u002Fperformance-optimization-core-web-vitals-for-ssgs","Core Web Vitals Optimization for SSGs",{"path":1437,"title":1438},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance","Astro Islands vs Full Hydration Performance",{"path":1440,"title":1441},"\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":1443,"title":1444},"\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":1446,"title":1447},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering","JavaScript Hydration & Partial Rendering",{"path":1449,"title":1450},"\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":1452,"title":1453},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Freplacing-react-islands-with-web-components","Replacing React Islands with Web Components",{"path":1455,"title":1456},"\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":1458,"title":1459},"\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":1461,"title":1462},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites","Largest Contentful Paint Optimization for Static Sites",{"path":1464,"title":1465},"\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":1467,"title":1468},"\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":1470,"title":1471},"\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":1473,"title":1474},"\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":1476,"title":1477},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci","Performance Budgets and Lighthouse CI",{"path":1479,"title":1480},"\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":1482,"title":1483},"\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":1485,"title":1486},"\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":1488,"title":1489},"\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":1491,"title":1492},"\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":1494,"title":1495},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fauditing-unused-preloads","Auditing Unused Preloads",{"path":1497,"title":1498},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed","Resource Hints and Navigation Speed",{"path":1500,"title":1501},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Finstant-navigation-with-speculation-rules","Instant Navigation with Speculation Rules",{"path":1503,"title":1504},"\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":1506,"title":1507},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fprefetching-links-in-astro","Prefetching Links in Astro",{"path":1509,"title":1510},"\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":1512,"title":1513},"\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":1515,"title":1516},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites","Third-Party Script Performance on Static Sites",{"path":1518,"title":1519},"\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":1521,"title":1522},"\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":1524,"title":1525},"\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":1527,"title":1528},"\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":1530,"title":1531},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fautomating-eleventy-deployments-with-cloudflare-pages","Automating Eleventy Deployments on Cloudflare Pages",{"path":1533,"title":1534},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fconfiguring-redirects-on-cloudflare-pages","Configuring Redirects on Cloudflare Pages",{"path":1536,"title":1537},"\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":1539,"title":1540},"\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":1542,"title":1543},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup","Cloudflare Pages Edge Caching Setup",{"path":1545,"title":1546},"\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":1548,"title":1549},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests","Checking Links in Pull Requests",{"path":1551,"title":1552},"\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":1554,"title":1011},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci",{"path":1556,"title":1557},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams","Content Workflows for Documentation Teams",{"path":1559,"title":1560},"\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":1562,"title":1563},"\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":1565,"title":1566},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fbuilding-astro-sites-with-github-actions","Building Astro Sites with GitHub Actions",{"path":1568,"title":1569},"\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":1571,"title":1572},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-github-pages-with-actions","Deploying to GitHub Pages with Actions",{"path":1574,"title":1575},"\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":1577,"title":1578},"\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":1580,"title":1581},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds","GitHub Actions for Automated SSG Builds",{"path":1583,"title":1584},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fmatrix-builds-for-multi-site-monorepos","Matrix Builds for Multi-Site Monorepos",{"path":1586,"title":1587},"\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":1589,"title":1590},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fenabling-incremental-builds-in-eleventy","Enabling Incremental Builds in Eleventy",{"path":1592,"title":1593},"\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":1595,"title":1596},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs","Incremental Builds and Build Caching for SSGs",{"path":1598,"title":1599},"\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":1601,"title":1602},"\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":1604,"title":1605},"\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":1607,"title":1608},"\u002Fproduction-ready-deployment-cicd-workflows","Production-Ready Deployment & CI\u002FCD for SSGs",{"path":1610,"title":1611},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Falerting-on-cache-hit-ratio-drops","Alerting on Cache Hit Ratio Drops",{"path":1613,"title":1614},"\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":1616,"title":1617},"\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":1619,"title":1620},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production","Monitoring Static Sites in Production",{"path":1622,"title":1623},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge","Logging 404s at the Edge",{"path":1625,"title":1626},"\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":1628,"title":1629},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fconfiguring-vercel-for-hugo-and-eleventy","Configuring Vercel for Hugo and Eleventy",{"path":1631,"title":1632},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies","Netlify vs Vercel Deployment Strategies",{"path":1634,"title":1635},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-build-hooks-for-content-updates","Netlify Build Hooks for Content Updates",{"path":1637,"title":1638},"\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":1640,"title":1641},"\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":1643,"title":1644},"\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":1646,"title":1647},"\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":1649,"title":1650},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fcleaning-up-stale-preview-deployments","Cleaning Up Stale Preview Deployments",{"path":1652,"title":1653},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests","Preview Environments for Pull Requests",{"path":1655,"title":1656},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpassword-protecting-preview-deployments","Password-Protecting Preview Deployments",{"path":1658,"title":1659},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpreviewing-headless-cms-drafts","Previewing Headless CMS Drafts",{"path":1661,"title":1140},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys",{"path":1663,"title":1664},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fatomic-deploys-vs-incremental-uploads","Atomic Deploys vs Incremental Uploads",{"path":1666,"title":1667},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fcanary-releases-for-static-sites","Canary Releases for Static Sites",{"path":1669,"title":1670},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Ffeature-flags-on-static-sites","Feature Flags on Static Sites",{"path":1672,"title":1673},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites","Rollbacks and Deploy Safety for Static Sites",{"path":1675,"title":1676},"\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":1678,"title":1679},"\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":1681,"title":1682},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fauditing-npm-dependencies-in-ssg-pipelines","Auditing npm Dependencies in SSG Pipelines",{"path":1684,"title":1685},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fenabling-hsts-and-preload-safely","Enabling HSTS and Preload Safely",{"path":1687,"title":1688},"\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":1690,"title":1691},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites","Security Headers and Hardening for Static Sites",{"path":1693,"title":1694},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsecuring-deploy-credentials-with-github-oidc","Securing Deploy Credentials with GitHub OIDC",{"path":1696,"title":1697},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsubresource-integrity-for-third-party-assets","Subresource Integrity for Third-Party Assets",{"path":1699,"title":1700},"\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":1702,"title":1703},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fclean-urls-and-trailing-slashes-on-s3","Clean URLs and Trailing Slashes on S3",{"path":1705,"title":1706},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fcloudfront-functions-for-redirects","CloudFront Functions for Redirects",{"path":1708,"title":1709},"\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":1711,"title":1712},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites","Self-Hosting Static Sites on S3, Nginx and Caddy",{"path":1714,"title":1715},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-caddy","Serving a Static Site with Caddy",{"path":1717,"title":1718},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-nginx","Serving a Static Site with Nginx",{"path":1720,"title":1721},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fzero-downtime-deploys-with-symlink-swaps","Zero-Downtime Deploys with Symlink Swaps",{"path":1723,"title":1724},"\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":1726,"title":1727},"\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":1729,"title":1730},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites","Serverless Functions for Static Sites",{"path":1732,"title":1733},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers","Netlify Functions vs Cloudflare Workers",{"path":1735,"title":1736},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fprotecting-a-static-site-behind-authentication","Protecting a Static Site Behind Authentication",{"path":1738,"title":1739},"\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",1789722847875]