[{"data":1,"prerenderedAt":1750},["ShallowReactive",2],{"page:\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation":3,"all-docs-nav":1212},{"id":4,"title":5,"body":6,"breadcrumb":1189,"dateModified":1198,"datePublished":1198,"description":1199,"extension":1200,"faq":1201,"meta":1206,"navigation":228,"path":1207,"seo":1208,"slug":12,"stem":1209,"type":1210,"__hash__":1211},"content\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation\u002Findex.md","Docusaurus vs Starlight for Product Documentation",{"type":7,"value":8,"toc":1173},"minimark",[9,13,22,31,36,56,60,63,91,118,136,154,405,547,551,558,682,795,802,806,809,835,841,851,964,968,971,984,1006,1015,1027,1033,1037,1089,1093,1096,1100,1105,1108,1112,1115,1119,1122,1126,1129,1133,1169],[10,11,5],"h1",{"id":12},"docusaurus-vs-starlight-for-product-documentation",[14,15,16,17,21],"p",{},"Product documentation has a specific shape: several hundred task and reference pages, a changelog, an API section, frequent small edits by writers and support staff, and readers who arrive from search on a phone with one question. Both Docusaurus and Starlight handle that shape; the question is which one handles it ",[18,19,20],"em",{},"cheaply"," over years. This comparison ports one real site — 640 pages of SaaS product docs with 210 screenshots, 48 embedded code tabs and 3 interactive API playgrounds — to both, and measures what changes.",[14,23,24,25,30],{},"The wider three-way picture, including VitePress, is in ",[26,27,29],"a",{"href":28},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002F","Docs Frameworks: Docusaurus, Starlight and VitePress",".",[32,33,35],"h2",{"id":34},"prerequisites","Prerequisites",[37,38,39,43,50,53],"ul",{},[40,41,42],"li",{},"Node.js 20 or later and a content set in Markdown or MDX with front matter.",[40,44,45,46,30],{},"A Lighthouse CI setup or equivalent to measure every build the same way — see ",[26,47,49],{"href":48},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Fsetting-up-lighthouse-ci-for-a-static-site\u002F","Setting Up Lighthouse CI for a Static Site",[40,51,52],{},"Real-user monitoring for INP if you want field numbers rather than lab estimates.",[40,54,55],{},"Roughly two engineer-days per framework for a port of this size, most of it spent on custom components.",[32,57,59],{"id":58},"the-port-step-by-step","The Port, Step by Step",[14,61,62],{},"The site started on Docusaurus 3.8 with the classic theme and six swizzled components. The Starlight port followed four steps.",[14,64,65,69,70,74,75,78,79,82,83,86,87,30],{},[66,67,68],"strong",{},"1. Scaffold and move content."," ",[71,72,73],"code",{},"npm create astro@latest -- --template starlight"," produces ",[71,76,77],{},"src\u002Fcontent\u002Fdocs\u002F",". The 640 files moved across unchanged except for front matter: Docusaurus's ",[71,80,81],{},"sidebar_position"," became Starlight's ",[71,84,85],{},"sidebar: { order: n }",", done with a forty-line script of the kind described in ",[26,88,90],{"href":89},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fconverting-front-matter-at-scale-during-migration\u002F","Converting Front Matter at Scale During Migration",[14,92,93,96,97,100,101,104,105,108,109,104,111,113,114,117],{},[66,94,95],{},"2. Replace admonitions and tabs."," Docusaurus ",[71,98,99],{},":::note"," admonitions work unchanged in Starlight, which supports the same directive syntax as asides. The ",[71,102,103],{},"\u003CTabs>","\u002F",[71,106,107],{},"\u003CTabItem>"," imports needed rewriting to Starlight's ",[71,110,103],{},[71,112,107],{}," from ",[71,115,116],{},"@astrojs\u002Fstarlight\u002Fcomponents"," — same names, different import path, so a codemod handled all 48.",[14,119,120,123,124,127,128,131,132,135],{},[66,121,122],{},"3. Rebuild the sidebar."," Docusaurus's ",[71,125,126],{},"sidebars.js"," was translated into Starlight's ",[71,129,130],{},"sidebar"," config, using ",[71,133,134],{},"autogenerate: { directory: 'guides' }"," for four of the six sections so new pages appear without config edits.",[14,137,138,141,142,145,146,149,150,30],{},[66,139,140],{},"4. Port the playgrounds."," The three API playgrounds were React components. They kept working through ",[71,143,144],{},"@astrojs\u002Freact"," with ",[71,147,148],{},"client:visible",", so their JavaScript loads only when scrolled into view — the pattern from ",[26,151,153],{"href":152},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fdeferring-hydration-with-client-visible-in-astro\u002F","Deferring Hydration with client:visible in Astro",[155,156,161],"pre",{"className":157,"code":158,"language":159,"meta":160,"style":160},"language-js shiki shiki-themes github-light github-dark","\u002F\u002F astro.config.mjs\nimport { defineConfig } from 'astro\u002Fconfig';\nimport starlight from '@astrojs\u002Fstarlight';\nimport react from '@astrojs\u002Freact';\n\nexport default defineConfig({\n  site: 'https:\u002F\u002Fdocs.example.com',\n  trailingSlash: 'always',\n  integrations: [\n    starlight({\n      title: 'Example Docs',\n      editLink: { baseUrl: 'https:\u002F\u002Fgithub.com\u002Fexample\u002Fdocs\u002Fedit\u002Fmain\u002F' },\n      sidebar: [\n        { label: 'Start here', autogenerate: { directory: 'start' } },\n        { label: 'Guides', autogenerate: { directory: 'guides' } },\n        { label: 'API', autogenerate: { directory: 'api' } },\n      ],\n      customCss: ['.\u002Fsrc\u002Fstyles\u002Fbrand.css'],\n    }),\n    react(),\n  ],\n});\n","js","",[71,162,163,172,193,208,223,230,246,258,269,275,283,294,306,312,330,345,360,366,378,384,393,399],{"__ignoreMap":160},[164,165,168],"span",{"class":166,"line":167},"line",1,[164,169,171],{"class":170},"sJ8bj","\u002F\u002F astro.config.mjs\n",[164,173,175,179,183,186,190],{"class":166,"line":174},2,[164,176,178],{"class":177},"szBVR","import",[164,180,182],{"class":181},"sVt8B"," { defineConfig } ",[164,184,185],{"class":177},"from",[164,187,189],{"class":188},"sZZnC"," 'astro\u002Fconfig'",[164,191,192],{"class":181},";\n",[164,194,196,198,201,203,206],{"class":166,"line":195},3,[164,197,178],{"class":177},[164,199,200],{"class":181}," starlight ",[164,202,185],{"class":177},[164,204,205],{"class":188}," '@astrojs\u002Fstarlight'",[164,207,192],{"class":181},[164,209,211,213,216,218,221],{"class":166,"line":210},4,[164,212,178],{"class":177},[164,214,215],{"class":181}," react ",[164,217,185],{"class":177},[164,219,220],{"class":188}," '@astrojs\u002Freact'",[164,222,192],{"class":181},[164,224,226],{"class":166,"line":225},5,[164,227,229],{"emptyLinePlaceholder":228},true,"\n",[164,231,233,236,239,243],{"class":166,"line":232},6,[164,234,235],{"class":177},"export",[164,237,238],{"class":177}," default",[164,240,242],{"class":241},"sScJk"," defineConfig",[164,244,245],{"class":181},"({\n",[164,247,249,252,255],{"class":166,"line":248},7,[164,250,251],{"class":181},"  site: ",[164,253,254],{"class":188},"'https:\u002F\u002Fdocs.example.com'",[164,256,257],{"class":181},",\n",[164,259,261,264,267],{"class":166,"line":260},8,[164,262,263],{"class":181},"  trailingSlash: ",[164,265,266],{"class":188},"'always'",[164,268,257],{"class":181},[164,270,272],{"class":166,"line":271},9,[164,273,274],{"class":181},"  integrations: [\n",[164,276,278,281],{"class":166,"line":277},10,[164,279,280],{"class":241},"    starlight",[164,282,245],{"class":181},[164,284,286,289,292],{"class":166,"line":285},11,[164,287,288],{"class":181},"      title: ",[164,290,291],{"class":188},"'Example Docs'",[164,293,257],{"class":181},[164,295,297,300,303],{"class":166,"line":296},12,[164,298,299],{"class":181},"      editLink: { baseUrl: ",[164,301,302],{"class":188},"'https:\u002F\u002Fgithub.com\u002Fexample\u002Fdocs\u002Fedit\u002Fmain\u002F'",[164,304,305],{"class":181}," },\n",[164,307,309],{"class":166,"line":308},13,[164,310,311],{"class":181},"      sidebar: [\n",[164,313,315,318,321,324,327],{"class":166,"line":314},14,[164,316,317],{"class":181},"        { label: ",[164,319,320],{"class":188},"'Start here'",[164,322,323],{"class":181},", autogenerate: { directory: ",[164,325,326],{"class":188},"'start'",[164,328,329],{"class":181}," } },\n",[164,331,333,335,338,340,343],{"class":166,"line":332},15,[164,334,317],{"class":181},[164,336,337],{"class":188},"'Guides'",[164,339,323],{"class":181},[164,341,342],{"class":188},"'guides'",[164,344,329],{"class":181},[164,346,348,350,353,355,358],{"class":166,"line":347},16,[164,349,317],{"class":181},[164,351,352],{"class":188},"'API'",[164,354,323],{"class":181},[164,356,357],{"class":188},"'api'",[164,359,329],{"class":181},[164,361,363],{"class":166,"line":362},17,[164,364,365],{"class":181},"      ],\n",[164,367,369,372,375],{"class":166,"line":368},18,[164,370,371],{"class":181},"      customCss: [",[164,373,374],{"class":188},"'.\u002Fsrc\u002Fstyles\u002Fbrand.css'",[164,376,377],{"class":181},"],\n",[164,379,381],{"class":166,"line":380},19,[164,382,383],{"class":181},"    }),\n",[164,385,387,390],{"class":166,"line":386},20,[164,388,389],{"class":241},"    react",[164,391,392],{"class":181},"(),\n",[164,394,396],{"class":166,"line":395},21,[164,397,398],{"class":181},"  ],\n",[164,400,402],{"class":166,"line":401},22,[164,403,404],{"class":181},"});\n",[406,407,408,543],"figure",{},[409,410,417,418,417,422,417,426,417,433],"svg",{"viewBox":411,"role":412,"ariaLabelledBy":413,"xmlns":416},"0 0 760 290","img",[414,415],"dvs-port-title","dvs-port-desc","http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","\n  ",[419,420,421],"title",{"id":414},"Where the porting effort went",[423,424,425],"desc",{"id":415},"A bar chart of engineer hours spent on the port by task. Moving content took 2 hours, front matter conversion 3 hours, tabs and admonitions 2 hours, the sidebar 3 hours, the React playgrounds 4 hours and restyling to the brand 6 hours, for 20 hours in total.",[427,428],"rect",{"x":429,"y":429,"width":430,"height":431,"fill":432},"0","760","290","#ffffff",[434,435,437,438,437,446,437,453,437,458,437,468,437,473,437,477,437,480,437,485,437,489,437,492,437,495,437,499,437,505,437,508,437,512,437,516,437,521,437,525,437,532,437,537,417],"g",{"style":436},"font-family:system-ui, sans-serif;font-size:12px","\n    ",[439,440,445],"text",{"x":441,"y":442,"fill":443,"style":444},"380","28","#1f2937","font-size:16px;font-weight:700;text-anchor:middle","20 engineer-hours, mostly outside the prose",[166,447],{"x1":448,"y1":449,"x2":448,"y2":450,"stroke":451,"style":452},"210","46","252","#d9e2ef","stroke-width:1.5px",[439,454,457],{"x":455,"y":456,"fill":443},"40","68","Move 640 files",[427,459],{"x":448,"y":460,"width":461,"height":462,"rx":463,"fill":464,"opacity":465,"stroke":466,"style":467},"54","140","20","4","#8ac926","0.25","#5a8a16","stroke-width:1px",[439,469,472],{"x":470,"y":471,"fill":443},"358","69","2 h",[439,474,476],{"x":455,"y":475,"fill":443},"102","Front matter script",[427,478],{"x":448,"y":479,"width":448,"height":462,"rx":463,"fill":464,"opacity":465,"stroke":466,"style":467},"88",[439,481,484],{"x":482,"y":483,"fill":443},"428","103","3 h",[439,486,488],{"x":455,"y":487,"fill":443},"136","Tabs + admonitions",[427,490],{"x":448,"y":491,"width":461,"height":462,"rx":463,"fill":464,"opacity":465,"stroke":466,"style":467},"122",[439,493,472],{"x":470,"y":494,"fill":443},"137",[439,496,498],{"x":455,"y":497,"fill":443},"170","Sidebar config",[427,500],{"x":448,"y":501,"width":448,"height":462,"rx":463,"fill":502,"opacity":503,"stroke":504,"style":467},"156","#ffca3a","0.35","#a97b00",[439,506,484],{"x":482,"y":507,"fill":443},"171",[439,509,511],{"x":455,"y":510,"fill":443},"204","React playgrounds",[427,513],{"x":448,"y":514,"width":515,"height":462,"rx":463,"fill":502,"opacity":503,"stroke":504,"style":467},"190","280",[439,517,520],{"x":518,"y":519,"fill":443},"498","205","4 h",[439,522,524],{"x":455,"y":523,"fill":443},"238","Brand restyle",[427,526],{"x":448,"y":527,"width":528,"height":462,"rx":463,"fill":529,"opacity":530,"stroke":531,"style":467},"224","420","#ff595e","0.2","#d83b41",[439,533,536],{"x":534,"y":535,"fill":443},"638","239","6 h",[439,538,542],{"x":455,"y":539,"fill":540,"style":541},"276","#556071","font-size:11px","Time-tracked port of a 640-page product docs site; prose itself needed no edits",[544,545,546],"figcaption",{},"The prose moved for free. The time went on the things that are framework-specific: styling, components and navigation.",[32,548,550],{"id":549},"measured-impact","Measured Impact",[14,552,553,554,557],{},"Both builds ran on the same GitHub Actions runner; page metrics are Lighthouse 12 mobile medians over five runs of four templates; field INP comes from ",[71,555,556],{},"web-vitals"," beacons over two four-week windows with similar traffic (about 180,000 page views each).",[559,560,561,580],"table",{},[562,563,564],"thead",{},[565,566,567,571,574,577],"tr",{},[568,569,570],"th",{},"Metric",[568,572,573],{},"Docusaurus 3.8",[568,575,576],{},"Starlight 0.34",[568,578,579],{},"Change",[581,582,583,598,612,626,640,654,668],"tbody",{},[565,584,585,589,592,595],{},[586,587,588],"td",{},"Cold build (hyperfine, 5 runs)",[586,590,591],{},"58 s",[586,593,594],{},"27 s",[586,596,597],{},"−53%",[565,599,600,603,606,609],{},[586,601,602],{},"Warm build, one page edited",[586,604,605],{},"44 s",[586,607,608],{},"12 s",[586,610,611],{},"−73%",[565,613,614,617,620,623],{},[586,615,616],{},"Compressed JS, median page",[586,618,619],{},"186 KB",[586,621,622],{},"9 KB (41 KB on playground pages)",[586,624,625],{},"−95%",[565,627,628,631,634,637],{},[586,629,630],{},"Lab LCP, simulated 4G",[586,632,633],{},"2.0 s",[586,635,636],{},"1.0 s",[586,638,639],{},"−50%",[565,641,642,645,648,651],{},[586,643,644],{},"Field INP, p75",[586,646,647],{},"210 ms",[586,649,650],{},"96 ms",[586,652,653],{},"−54%",[565,655,656,659,662,665],{},[586,657,658],{},"Field LCP, p75",[586,660,661],{},"1.9 s",[586,663,664],{},"1.3 s",[586,666,667],{},"−32%",[565,669,670,673,676,679],{},[586,671,672],{},"Deploy artifact size",[586,674,675],{},"92 MB",[586,677,678],{},"38 MB",[586,680,681],{},"−59%",[406,683,684,792],{},[409,685,417,690,417,693,417,696,417,699],{"viewBox":686,"role":412,"ariaLabelledBy":687,"xmlns":416},"0 0 760 300",[688,689],"dvs-field-title","dvs-field-desc",[419,691,692],{"id":688},"Field INP and LCP before and after the port",[423,694,695],{"id":689},"Paired bars from real-user monitoring at the 75th percentile. INP fell from 210 milliseconds on Docusaurus to 96 on Starlight, crossing below the 200 millisecond good threshold. LCP fell from 1.9 seconds to 1.3 seconds, both under the 2.5 second threshold.",[427,697],{"x":429,"y":429,"width":430,"height":698,"fill":432},"300",[434,700,437,701,437,704,437,709,437,714,437,718,437,724,437,729,437,733,437,738,437,743,437,748,437,751,437,755,437,759,437,761,437,765,437,769,437,774,437,779,437,784,437,786,437,788,417],{"style":436},[439,702,703],{"x":441,"y":442,"fill":443,"style":444},"Real users, p75, four weeks each",[439,705,708],{"x":514,"y":706,"fill":443,"style":707},"62","font-weight:700;text-anchor:middle","INP (ms)",[166,710],{"x1":711,"y1":712,"x2":713,"y2":712,"stroke":540,"style":452},"60","250","330",[166,715],{"x1":711,"y1":716,"x2":713,"y2":716,"stroke":531,"style":717},"130","stroke-width:1px;stroke-dasharray:5 4",[439,719,723],{"x":713,"y":720,"fill":721,"style":722},"124","#b32b30","font-size:11px;text-anchor:end","200 ms threshold",[427,725],{"x":726,"y":720,"width":727,"height":728,"fill":529,"opacity":465,"stroke":531,"style":467},"100","70","126",[439,730,448],{"x":731,"y":732,"fill":443,"style":707},"135","116",[427,734],{"x":448,"y":735,"width":727,"height":736,"fill":464,"opacity":737,"stroke":466,"style":467},"192","58","0.3",[439,739,742],{"x":740,"y":741,"fill":443,"style":707},"245","184","96",[439,744,747],{"x":731,"y":745,"fill":540,"style":746},"268","font-size:11px;text-anchor:middle","Docusaurus",[439,749,750],{"x":740,"y":745,"fill":540,"style":746},"Starlight",[439,752,754],{"x":753,"y":706,"fill":443,"style":707},"570","LCP (s)",[166,756],{"x1":757,"y1":712,"x2":758,"y2":712,"stroke":540,"style":452},"430","700",[166,760],{"x1":757,"y1":726,"x2":758,"y2":726,"stroke":531,"style":717},[439,762,764],{"x":758,"y":763,"fill":721,"style":722},"94","2.5 s threshold",[427,766],{"x":767,"y":487,"width":727,"height":768,"fill":502,"opacity":503,"stroke":504,"style":467},"470","114",[439,770,773],{"x":771,"y":772,"fill":443,"style":707},"505","128","1.9",[427,775],{"x":776,"y":777,"width":727,"height":778,"fill":464,"opacity":737,"stroke":466,"style":467},"580","172","78",[439,780,783],{"x":781,"y":782,"fill":443,"style":707},"615","164","1.3",[439,785,747],{"x":771,"y":745,"fill":540,"style":746},[439,787,750],{"x":781,"y":745,"fill":540,"style":746},[439,789,791],{"x":441,"y":790,"fill":540,"style":746},"292","web-vitals beacons, ~180,000 page views per window",[544,793,794],{},"INP moved from \"needs improvement\" to \"good\" without touching a single interaction handler — the change was simply shipping less JavaScript.",[14,796,797,798,30],{},"The INP result is the one that mattered to the business: Search Console had flagged 312 URLs as \"INP needs improvement\" on mobile, and 28 days after launch that count was zero. The field breakdown is explained in ",[26,799,801],{"href":800},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fmeasuring-inp-on-static-sites-with-real-user-monitoring\u002F","Measuring INP on Static Sites with Real-User Monitoring",[32,803,805],{"id":804},"where-docusaurus-still-won","Where Docusaurus Still Won",[14,807,808],{},"The comparison was not one-sided, and three things were genuinely harder on Starlight.",[14,810,811,814,815,818,819,822,823,826,827,830,831,30],{},[66,812,813],{},"Versioning."," The product kept two supported versions. On Docusaurus that was ",[71,816,817],{},"docs:version"," and a dropdown. On Starlight it became two branches, two deploys (",[71,820,821],{},"\u002Fdocs\u002F"," and ",[71,824,825],{},"\u002Fdocs\u002Fv1\u002F",") and a custom ",[71,828,829],{},"Header"," override with a version switcher — about six hours of extra work, and a second build pipeline to maintain. Teams with four or more live versions should weigh that heavily; the Docusaurus approach is covered in ",[26,832,834],{"href":833},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus\u002F","Versioned Documentation with Docusaurus",[14,836,837,840],{},[66,838,839],{},"Plugin breadth."," Docusaurus has a larger plugin catalogue: OpenAPI page generation, ideal-image, PWA, client redirects. Starlight's catalogue is growing but thinner, and the OpenAPI plugin needed configuration work to match the old output.",[14,842,843,846,847,850],{},[66,844,845],{},"Blog."," The changelog had been a Docusaurus blog with tags and an RSS feed. It moved to the ",[71,848,849],{},"starlight-blog"," community plugin, which worked but required restyling.",[406,852,853,961],{},[409,854,417,858,417,861,417,864,417,866],{"viewBox":686,"role":412,"ariaLabelledBy":855,"xmlns":416},[856,857],"dvs-score-title","dvs-score-desc",[419,859,860],{"id":856},"Scorecard across six criteria",[423,862,863],{"id":857},"Six criteria scored from one to five for each framework. Page weight: Docusaurus 2, Starlight 5. Build speed: 2 and 4. Authoring ease: 3 and 5. Versioning: 5 and 2. Plugin breadth: 5 and 3. Upgrade stability: 4 and 3.",[427,865],{"x":429,"y":429,"width":430,"height":698,"fill":432},[434,867,437,868,437,871,437,876,437,879,437,882,437,885,437,888,437,894,437,896,437,899,437,901,437,904,437,907,437,911,437,913,437,917,437,919,437,921,437,925,437,928,437,930,437,934,437,937,437,939,437,945,437,949,437,953,437,957,417],{"style":436},[439,869,870],{"x":441,"y":442,"fill":443,"style":444},"Six criteria, scored 1 to 5 for this site",[427,872],{"x":767,"y":873,"width":874,"height":874,"fill":875,"opacity":503,"stroke":875,"style":467},"44","12","#1982c4",[439,877,747],{"x":878,"y":460,"fill":540,"style":541},"488",[427,880],{"x":776,"y":873,"width":874,"height":874,"fill":881,"opacity":503,"stroke":881,"style":467},"#6a4c93",[439,883,750],{"x":884,"y":460,"fill":540,"style":541},"598",[439,886,887],{"x":455,"y":479,"fill":443},"Page weight",[427,889],{"x":890,"y":891,"width":892,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},"200","76","80","10",[427,895],{"x":890,"y":479,"width":890,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},[439,897,898],{"x":455,"y":728,"fill":443},"Build speed",[427,900],{"x":890,"y":768,"width":892,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},[427,902],{"x":890,"y":728,"width":903,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},"160",[439,905,906],{"x":455,"y":782,"fill":443},"Authoring ease",[427,908],{"x":890,"y":909,"width":910,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},"152","120",[427,912],{"x":890,"y":782,"width":890,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},[439,914,916],{"x":455,"y":915,"fill":443},"202","Versioning",[427,918],{"x":890,"y":514,"width":890,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},[427,920],{"x":890,"y":915,"width":892,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},[439,922,924],{"x":455,"y":923,"fill":443},"240","Plugin breadth",[427,926],{"x":890,"y":927,"width":890,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},"228",[427,929],{"x":890,"y":923,"width":910,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},[439,931,933],{"x":455,"y":932,"fill":443},"278","Upgrade stability",[427,935],{"x":890,"y":936,"width":903,"height":893,"fill":875,"opacity":503,"stroke":875,"style":467},"266",[427,938],{"x":890,"y":932,"width":910,"height":893,"fill":881,"opacity":503,"stroke":881,"style":467},[439,940,944],{"x":941,"y":942,"fill":443,"style":943},"460","150","font-weight:700","Totals",[439,946,948],{"x":941,"y":947,"fill":443},"174","Docusaurus 21 \u002F 30",[439,950,952],{"x":941,"y":951,"fill":443},"196","Starlight 22 \u002F 30",[439,954,956],{"x":941,"y":955,"fill":540,"style":541},"226","Near-tie overall: the weighting",[439,958,960],{"x":941,"y":959,"fill":540,"style":541},"242","you give versioning decides it",[544,962,963],{},"Unweighted, the two are within a point. Weight page weight and authoring for a support-driven docs site and Starlight wins; weight versioning for an enterprise product and Docusaurus does.",[32,965,967],{"id":966},"authoring-and-review-after-the-switch","Authoring and Review After the Switch",[14,969,970],{},"Performance numbers convinced the engineering lead; the writers were convinced by what happened to their daily loop. Three changes stood out in the month after launch.",[14,972,973,69,976,979,980,983],{},[66,974,975],{},"Faster local preview.",[71,977,978],{},"astro dev"," started in 1.8 seconds against 11 seconds for ",[71,981,982],{},"docusaurus start",", and hot reload on a Markdown save dropped from about 2.5 seconds to under half a second. For a writer saving forty times an hour, that is the difference between watching the preview and forgetting it exists.",[14,985,986,989,990,993,994,997,998,1001,1002,1005],{},[66,987,988],{},"Readable errors."," The most common Docusaurus failure had been an MDX compile error caused by an unescaped ",[71,991,992],{},"\u003C"," or ",[71,995,996],{},"{"," in prose — for example ",[71,999,1000],{},"latency \u003C 200ms"," or a JSON snippet outside a code fence. Starlight parses ",[71,1003,1004],{},".md"," files as plain Markdown, so those characters simply render. The support team, who contribute about a quarter of all edits, stopped filing \"the build is broken\" tickets entirely; there had been eleven in the previous quarter.",[14,1007,1008,1011,1012,1014],{},[66,1009,1010],{},"Smaller review diffs."," Autogenerated sidebars removed a class of pull request in which a writer added a page and forgot to register it in ",[71,1013,126],{},". Reviews became content-only, and median time from pull request to merge fell from 26 hours to 17 over the following six weeks, measured from the GitHub API.",[14,1016,1017,1018,1021,1022,1026],{},"None of this is exclusive to Starlight — a well-configured Docusaurus with ",[71,1019,1020],{},"format: 'detect'"," and autogenerated sidebars recovers part of it — but defaults matter because most teams never change them. If writer experience is a priority, audit the defaults with the same care as the build numbers, using the review workflow in ",[26,1023,1025],{"href":1024},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fdocs-as-code-review-workflow-for-writers\u002F","Docs-as-Code Review Workflow for Writers"," as the baseline.",[14,1028,1029,1032],{},[66,1030,1031],{},"Search behaviour changed too."," Pagefind loads index fragments on demand, so the first query on a page costs about 90 KB of downloads and returns in roughly 150 ms on a mid-range phone; Algolia had answered in about 60 ms from its API. Nobody noticed in usability sessions, but it is a measurable difference, and it is worth recording in the decision log so that a future complaint about search speed can be traced to a deliberate trade rather than a regression.",[32,1034,1036],{"id":1035},"pitfalls-rollback","Pitfalls & Rollback",[37,1038,1039,1052,1064,1077,1083],{},[40,1040,1041,123,1044,1047,1048,1051],{},[66,1042,1043],{},"Assuming admonitions port cleanly everywhere.",[71,1045,1046],{},":::note[Title]"," title syntax differs slightly from older Starlight releases; grep for ",[71,1049,1050],{},":::"," with a bracket and test a sample.",[40,1053,1054,123,1057,1059,1060,30],{},[66,1055,1056],{},"Dropping redirects.",[71,1058,821],{}," prefix disappeared in the new URL scheme on the first attempt. Keep URLs identical or generate redirects as described in ",[26,1061,1063],{"href":1062},"\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",[40,1065,1066,1069,1070,1073,1074,1076],{},[66,1067,1068],{},"Hydrating everything."," Wrapping every React component in ",[71,1071,1072],{},"client:load"," recreates the Docusaurus JavaScript bill. Default to no directive; add ",[71,1075,148],{}," only to components that respond to input.",[40,1078,1079,1082],{},[66,1080,1081],{},"Losing search analytics."," Moving from Algolia to Pagefind removes Algolia's query analytics. Log searches to your own endpoint if the support team relies on them.",[40,1084,1085,1088],{},[66,1086,1087],{},"Rollback:"," run both sites in parallel behind the same domain during cutover, routing by path prefix at the CDN. Reverting is a routing change, and the old build stays deployable until the new one has four clean weeks of field data.",[32,1090,1092],{"id":1091},"conclusion","Conclusion",[14,1094,1095],{},"For this product's docs, Starlight halved build time, cut JavaScript by 95% and moved field INP from 210 ms to 96 ms, at the cost of hand-assembling versioning and a thinner plugin catalogue. That trade is right for most support-driven documentation with one or two live versions. For products with many supported versions, a built-in blog and a React-heavy design system, Docusaurus's integrated features still earn their runtime cost — especially with Rspack enabled to close the build-time gap.",[32,1097,1099],{"id":1098},"faq","FAQ",[1101,1102,1104],"h3",{"id":1103},"is-starlight-mature-enough-for-a-commercial-products-docs","Is Starlight mature enough for a commercial product's docs?",[14,1106,1107],{},"For most product documentation, yes. It is pre-1.0, so minor releases can include breaking changes, but those are documented in the changelog and in our port each upgrade took under an hour. Pin exact versions and upgrade through a preview deploy.",[1101,1109,1111],{"id":1110},"when-is-docusaurus-clearly-the-better-choice","When is Docusaurus clearly the better choice?",[14,1113,1114],{},"When you need several concurrently supported doc versions, a built-in blog, or deep integration with an existing React design system. Docusaurus handles versioning with one CLI command, which Starlight does not offer.",[1101,1116,1118],{"id":1117},"how-much-did-field-inp-change-after-moving-to-starlight","How much did field INP change after moving to Starlight?",[14,1120,1121],{},"The 75th-percentile INP from real-user monitoring fell from 210 ms on Docusaurus to 96 ms on Starlight over comparable four-week windows, because the pages stopped hydrating a full React tree.",[1101,1123,1125],{"id":1124},"can-starlight-use-react-components-from-our-design-system","Can Starlight use React components from our design system?",[14,1127,1128],{},"Yes. Add the Astro React integration and render components with a client directive only where they need interactivity. Static components render to HTML with no JavaScript shipped.",[32,1130,1132],{"id":1131},"related","Related",[37,1134,1135,1143,1148,1155,1162],{},[40,1136,1137,69,1140,1142],{},[66,1138,1139],{},"Parent:",[26,1141,29],{"href":28}," — the three-way comparison.",[40,1144,1145,1147],{},[26,1146,834],{"href":833}," — Docusaurus's strongest feature, done efficiently.",[40,1149,1150,1154],{},[26,1151,1153],{"href":1152},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fcustomizing-starlight-without-forking-the-theme\u002F","Customizing Starlight Without Forking the Theme"," — the brand restyle from this port.",[40,1156,1157,1161],{},[26,1158,1160],{"href":1159},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance\u002F","Astro Islands vs Full Hydration Performance"," — why the JavaScript bill fell.",[40,1163,1164,1168],{},[26,1165,1167],{"href":1166},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-hugo-to-astro-without-breaking-urls\u002F","Migrating from Hugo to Astro Without Breaking URLs"," — URL parity techniques that apply here too.",[1170,1171,1172],"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 .sScJk, html code.shiki .sScJk{--shiki-default:#6F42C1;--shiki-dark:#B392F0}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":160,"searchDepth":174,"depth":174,"links":1174},[1175,1176,1177,1178,1179,1180,1181,1182,1188],{"id":34,"depth":174,"text":35},{"id":58,"depth":174,"text":59},{"id":549,"depth":174,"text":550},{"id":804,"depth":174,"text":805},{"id":966,"depth":174,"text":967},{"id":1035,"depth":174,"text":1036},{"id":1091,"depth":174,"text":1092},{"id":1098,"depth":174,"text":1099,"children":1183},[1184,1185,1186,1187],{"id":1103,"depth":195,"text":1104},{"id":1110,"depth":195,"text":1111},{"id":1117,"depth":195,"text":1118},{"id":1124,"depth":195,"text":1125},{"id":1131,"depth":174,"text":1132},[1190,1192,1195,1196],{"name":1191,"item":104},"Home",{"name":1193,"item":1194},"Choosing the Right Static Site Generator for Production","\u002Fchoosing-the-right-static-site-generator-for-production\u002F",{"name":29,"item":28},{"name":5,"item":1197},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation\u002F","2026-09-18","A head-to-head port of a 640-page SaaS docs site to Docusaurus and Starlight: build time, JavaScript shipped, field INP, authoring friction and upgrade cost.","md",[1202,1203,1204,1205],{"q":1104,"a":1107},{"q":1111,"a":1114},{"q":1118,"a":1121},{"q":1125,"a":1128},{},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation",{"title":5,"description":1199},"choosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fdocusaurus-vs-starlight-for-product-documentation\u002Findex","article","vFJQXtPhSKSSPvVMoLaq9Gn2nGSXsEL6H5DT5pV34Z4",[1213,1216,1219,1222,1225,1228,1231,1233,1234,1236,1239,1242,1244,1247,1250,1253,1256,1259,1262,1265,1267,1270,1273,1276,1279,1282,1285,1287,1290,1292,1295,1298,1301,1304,1307,1310,1313,1316,1319,1322,1325,1328,1331,1334,1337,1340,1343,1346,1349,1352,1355,1358,1361,1364,1367,1370,1373,1376,1379,1382,1385,1388,1391,1394,1397,1400,1403,1406,1409,1412,1415,1418,1421,1424,1427,1430,1433,1436,1439,1442,1445,1448,1450,1452,1455,1458,1461,1464,1467,1470,1473,1476,1479,1482,1485,1488,1491,1494,1496,1499,1502,1505,1508,1511,1514,1517,1520,1523,1526,1529,1532,1535,1538,1541,1544,1547,1550,1553,1556,1559,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,1663,1666,1669,1672,1675,1678,1681,1684,1687,1690,1693,1696,1699,1702,1705,1708,1711,1714,1717,1720,1723,1726,1729,1732,1735,1738,1741,1744,1747],{"path":1214,"title":1215},"\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":1217,"title":1218},"\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":1220,"title":1221},"\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":1223,"title":1224},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites","Astro vs Eleventy for Documentation Sites",{"path":1226,"title":1227},"\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":1229,"title":1230},"\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":1232,"title":1153},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fcustomizing-starlight-without-forking-the-theme",{"path":1207,"title":5},{"path":1235,"title":29},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress",{"path":1237,"title":1238},"\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":1240,"title":1241},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmigrating-from-mkdocs-to-starlight","Migrating from MkDocs to Starlight",{"path":1243,"title":834},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus",{"path":1245,"title":1246},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fvitepress-for-library-documentation","VitePress for Library Documentation",{"path":1248,"title":1249},"\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":1251,"title":1252},"\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":1254,"title":1255},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories","Hugo Build Times for Large Repositories",{"path":1257,"title":1258},"\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":1260,"title":1261},"\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":1263,"title":1264},"\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":1266,"title":1193},"\u002Fchoosing-the-right-static-site-generator-for-production",{"path":1268,"title":1269},"\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":1271,"title":1272},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem","Jekyll Plugin Ecosystem",{"path":1274,"title":1275},"\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":1277,"title":1278},"\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":1280,"title":1281},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fspeeding-up-slow-jekyll-builds","Speeding Up Slow Jekyll Builds",{"path":1283,"title":1284},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fupgrading-jekyll-and-ruby-versions-safely","Upgrading Jekyll and Ruby Versions Safely",{"path":1286,"title":90},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fconverting-front-matter-at-scale-during-migration",{"path":1288,"title":1289},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators","Migrating Between Static Site Generators",{"path":1291,"title":1063},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fkeeping-redirects-working-after-an-ssg-migration",{"path":1293,"title":1294},"\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":1296,"title":1297},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-gatsby-to-astro","Migrating from Gatsby to Astro",{"path":1299,"title":1300},"\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":1302,"title":1303},"\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":1305,"title":1306},"\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":1308,"title":1309},"\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":1311,"title":1312},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites","Next.js Static Export for Content Sites",{"path":1314,"title":1315},"\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":1317,"title":1318},"\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":1320,"title":1321},"\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":1323,"title":1324},"\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":1326,"title":1327},"\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":1329,"title":1330},"\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":1332,"title":1333},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites","Search for Static Sites",{"path":1335,"title":1336},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Findexing-hugo-sites-with-pagefind","Indexing Hugo Sites with Pagefind",{"path":1338,"title":1339},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fmultilingual-search-on-static-sites","Multilingual Search on Static Sites",{"path":1341,"title":1342},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fpagefind-vs-algolia-docsearch","Pagefind vs Algolia DocSearch",{"path":1344,"title":1345},"\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":1347,"title":1348},"\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":1350,"title":1351},"\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":1353,"title":1354},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults","Evaluating SSG Accessibility Defaults",{"path":1356,"title":1357},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix","SSG Framework Selection Matrix",{"path":1359,"title":1360},"\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":1362,"title":1363},"\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":1365,"title":1366},"\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":1368,"title":1369},"\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":1371,"title":1372},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs","CDN Caching Rules for SSGs",{"path":1374,"title":1375},"\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":1377,"title":1378},"\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":1380,"title":1381},"\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":1383,"title":1384},"\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":1386,"title":1387},"\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":1389,"title":1390},"\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":1392,"title":1393},"\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":1395,"title":1396},"\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":1398,"title":1399},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites","Cumulative Layout Shift Fixes for Static Sites",{"path":1401,"title":1402},"\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":1404,"title":1405},"\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":1407,"title":1408},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Ffont-display-optional-vs-swap","font-display: optional vs swap",{"path":1410,"title":1411},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites","Font Loading Strategies for Static Sites",{"path":1413,"title":1414},"\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":1416,"title":1417},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fpreloading-fonts-without-double-downloads","Preloading Fonts Without Double Downloads",{"path":1419,"title":1420},"\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":1422,"title":1423},"\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":1425,"title":1426},"\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":1428,"title":1429},"\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":1431,"title":1432},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro","Image Optimization Pipelines in Astro",{"path":1434,"title":1435},"\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":1437,"title":1438},"\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":1440,"title":1441},"\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":1443,"title":1444},"\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":1446,"title":1447},"\u002Fperformance-optimization-core-web-vitals-for-ssgs","Core Web Vitals Optimization for SSGs",{"path":1449,"title":1160},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance",{"path":1451,"title":153},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fdeferring-hydration-with-client-visible-in-astro",{"path":1453,"title":1454},"\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":1456,"title":1457},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering","JavaScript Hydration & Partial Rendering",{"path":1459,"title":1460},"\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":1462,"title":1463},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Freplacing-react-islands-with-web-components","Replacing React Islands with Web Components",{"path":1465,"title":1466},"\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":1468,"title":1469},"\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":1471,"title":1472},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites","Largest Contentful Paint Optimization for Static Sites",{"path":1474,"title":1475},"\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":1477,"title":1478},"\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":1480,"title":1481},"\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":1483,"title":1484},"\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":1486,"title":1487},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci","Performance Budgets and Lighthouse CI",{"path":1489,"title":1490},"\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":1492,"title":1493},"\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":1495,"title":49},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci\u002Fsetting-up-lighthouse-ci-for-a-static-site",{"path":1497,"title":1498},"\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":1500,"title":1501},"\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":1503,"title":1504},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fauditing-unused-preloads","Auditing Unused Preloads",{"path":1506,"title":1507},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed","Resource Hints and Navigation Speed",{"path":1509,"title":1510},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Finstant-navigation-with-speculation-rules","Instant Navigation with Speculation Rules",{"path":1512,"title":1513},"\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":1515,"title":1516},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fprefetching-links-in-astro","Prefetching Links in Astro",{"path":1518,"title":1519},"\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":1521,"title":1522},"\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":1524,"title":1525},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites","Third-Party Script Performance on Static Sites",{"path":1527,"title":1528},"\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":1530,"title":1531},"\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":1533,"title":1534},"\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":1536,"title":1537},"\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":1539,"title":1540},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fautomating-eleventy-deployments-with-cloudflare-pages","Automating Eleventy Deployments on Cloudflare Pages",{"path":1542,"title":1543},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fconfiguring-redirects-on-cloudflare-pages","Configuring Redirects on Cloudflare Pages",{"path":1545,"title":1546},"\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":1548,"title":1549},"\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":1551,"title":1552},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup","Cloudflare Pages Edge Caching Setup",{"path":1554,"title":1555},"\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":1557,"title":1558},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests","Checking Links in Pull Requests",{"path":1560,"title":1025},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fdocs-as-code-review-workflow-for-writers",{"path":1562,"title":1563},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci","Editorial Checks with Vale in CI",{"path":1565,"title":1566},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams","Content Workflows for Documentation Teams",{"path":1568,"title":1569},"\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":1571,"title":1572},"\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":1574,"title":1575},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fbuilding-astro-sites-with-github-actions","Building Astro Sites with GitHub Actions",{"path":1577,"title":1578},"\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":1580,"title":1581},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-github-pages-with-actions","Deploying to GitHub Pages with Actions",{"path":1583,"title":1584},"\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":1586,"title":1587},"\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":1589,"title":1590},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds","GitHub Actions for Automated SSG Builds",{"path":1592,"title":1593},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fmatrix-builds-for-multi-site-monorepos","Matrix Builds for Multi-Site Monorepos",{"path":1595,"title":1596},"\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":1598,"title":1599},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fenabling-incremental-builds-in-eleventy","Enabling Incremental Builds in Eleventy",{"path":1601,"title":1602},"\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":1604,"title":1605},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs","Incremental Builds and Build Caching for SSGs",{"path":1607,"title":1608},"\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":1610,"title":1611},"\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":1613,"title":1614},"\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":1616,"title":1617},"\u002Fproduction-ready-deployment-cicd-workflows","Production-Ready Deployment & CI\u002FCD for SSGs",{"path":1619,"title":1620},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Falerting-on-cache-hit-ratio-drops","Alerting on Cache Hit Ratio Drops",{"path":1622,"title":1623},"\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":1625,"title":1626},"\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":1628,"title":1629},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production","Monitoring Static Sites in Production",{"path":1631,"title":1632},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge","Logging 404s at the Edge",{"path":1634,"title":1635},"\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":1637,"title":1638},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fconfiguring-vercel-for-hugo-and-eleventy","Configuring Vercel for Hugo and Eleventy",{"path":1640,"title":1641},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies","Netlify vs Vercel Deployment Strategies",{"path":1643,"title":1644},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-build-hooks-for-content-updates","Netlify Build Hooks for Content Updates",{"path":1646,"title":1647},"\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":1649,"title":1650},"\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":1652,"title":1653},"\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":1655,"title":1656},"\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":1658,"title":1659},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fcleaning-up-stale-preview-deployments","Cleaning Up Stale Preview Deployments",{"path":1661,"title":1662},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests","Preview Environments for Pull Requests",{"path":1664,"title":1665},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpassword-protecting-preview-deployments","Password-Protecting Preview Deployments",{"path":1667,"title":1668},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpreviewing-headless-cms-drafts","Previewing Headless CMS Drafts",{"path":1670,"title":1671},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys","Visual Regression Testing on Preview Deploys",{"path":1673,"title":1674},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fatomic-deploys-vs-incremental-uploads","Atomic Deploys vs Incremental Uploads",{"path":1676,"title":1677},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fcanary-releases-for-static-sites","Canary Releases for Static Sites",{"path":1679,"title":1680},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Ffeature-flags-on-static-sites","Feature Flags on Static Sites",{"path":1682,"title":1683},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites","Rollbacks and Deploy Safety for Static Sites",{"path":1685,"title":1686},"\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":1688,"title":1689},"\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":1691,"title":1692},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fauditing-npm-dependencies-in-ssg-pipelines","Auditing npm Dependencies in SSG Pipelines",{"path":1694,"title":1695},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fenabling-hsts-and-preload-safely","Enabling HSTS and Preload Safely",{"path":1697,"title":1698},"\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":1700,"title":1701},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites","Security Headers and Hardening for Static Sites",{"path":1703,"title":1704},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsecuring-deploy-credentials-with-github-oidc","Securing Deploy Credentials with GitHub OIDC",{"path":1706,"title":1707},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsubresource-integrity-for-third-party-assets","Subresource Integrity for Third-Party Assets",{"path":1709,"title":1710},"\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":1712,"title":1713},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fclean-urls-and-trailing-slashes-on-s3","Clean URLs and Trailing Slashes on S3",{"path":1715,"title":1716},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fcloudfront-functions-for-redirects","CloudFront Functions for Redirects",{"path":1718,"title":1719},"\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":1721,"title":1722},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites","Self-Hosting Static Sites on S3, Nginx and Caddy",{"path":1724,"title":1725},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-caddy","Serving a Static Site with Caddy",{"path":1727,"title":1728},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-nginx","Serving a Static Site with Nginx",{"path":1730,"title":1731},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fzero-downtime-deploys-with-symlink-swaps","Zero-Downtime Deploys with Symlink Swaps",{"path":1733,"title":1734},"\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":1736,"title":1737},"\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":1739,"title":1740},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites","Serverless Functions for Static Sites",{"path":1742,"title":1743},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers","Netlify Functions vs Cloudflare Workers",{"path":1745,"title":1746},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fprotecting-a-static-site-behind-authentication","Protecting a Static Site Behind Authentication",{"path":1748,"title":1749},"\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",1789722847082]