[{"data":1,"prerenderedAt":1813},["ShallowReactive",2],{"page:\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator":3,"all-docs-nav":1276},{"id":4,"title":5,"body":6,"breadcrumb":1249,"dateModified":1259,"datePublished":1259,"description":1260,"extension":1261,"faq":1262,"meta":1269,"navigation":1270,"path":1271,"seo":1272,"slug":12,"stem":1273,"type":1274,"__hash__":1275},"content\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator\u002Findex.md","Migrating WordPress to a Static Site Generator",{"type":7,"value":8,"toc":1231},"minimark",[9,13,17,31,36,49,53,56,268,279,442,445,449,460,527,538,719,723,734,768,780,852,856,880,884,894,898,997,1083,1086,1090,1146,1150,1153,1157,1162,1165,1169,1172,1176,1179,1183,1186,1190,1227],[10,11,5],"h1",{"id":12},"migrating-wordpress-to-a-static-site-generator",[14,15,16],"p",{},"WordPress powers a large share of the web, and many of those sites are a blog or a documentation set that changes a few times a week: no shop, no memberships, no dynamic features beyond comments and a contact form. For those sites, a static generator removes the PHP runtime, the database, the plugin update treadmill and the security patching, and typically makes every page several times faster. The migration is not a one-click export, though. WordPress content carries shortcodes, block markup, media URLs, comment threads and a URL history that search engines and other sites depend on.",[14,18,19,20,25,26,30],{},"This guide migrates a 1,850-post technical blog from WordPress to Astro, keeping every URL, localising 6,400 media files, preserving comments, and measuring the before and after. It follows the playbook in ",[21,22,24],"a",{"href":23},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002F","Migrating Between Static Site Generators","; the generator choice itself is covered in the ",[21,27,29],{"href":28},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002F","SSG Framework Selection Matrix",".",[32,33,35],"h2",{"id":34},"prerequisites","Prerequisites",[37,38,39,43,46],"ul",{},[40,41,42],"li",{},"Admin access to the WordPress site, or at least its REST API and uploads directory.",[40,44,45],{},"A full crawl or sitemap of current URLs — including categories, tags, pagination and attachment pages.",[40,47,48],{},"A decision on who edits content afterwards: developers in Git, writers through a Git-backed CMS, or WordPress kept as a headless CMS.",[32,50,52],{"id":51},"step-1-export-content","Step 1: Export Content",[14,54,55],{},"The REST API gives structured data that is easier to convert than the WXR export file:",[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\u002Fwp-export.mjs\nconst base = 'https:\u002F\u002Fblog.example.com\u002Fwp-json\u002Fwp\u002Fv2';\nlet page = 1, posts = [];\nwhile (true) {\n  const r = await fetch(`${base}\u002Fposts?per_page=100&page=${page}&_embed=1&status=publish`);\n  if (!r.ok) break;\n  posts.push(...(await r.json()));\n  if (page++ >= Number(r.headers.get('x-wp-totalpages'))) break;\n}\n\u002F\u002F posts[i]: { slug, date, modified, title.rendered, content.rendered, categories, tags, link, _embedded }\n","js","",[64,65,66,75,97,120,135,174,193,221,256,262],"code",{"__ignoreMap":62},[67,68,71],"span",{"class":69,"line":70},"line",1,[67,72,74],{"class":73},"sJ8bj","\u002F\u002F scripts\u002Fwp-export.mjs\n",[67,76,78,82,86,89,93],{"class":69,"line":77},2,[67,79,81],{"class":80},"szBVR","const",[67,83,85],{"class":84},"sj4cs"," base",[67,87,88],{"class":80}," =",[67,90,92],{"class":91},"sZZnC"," 'https:\u002F\u002Fblog.example.com\u002Fwp-json\u002Fwp\u002Fv2'",[67,94,96],{"class":95},"sVt8B",";\n",[67,98,100,103,106,109,112,115,117],{"class":69,"line":99},3,[67,101,102],{"class":80},"let",[67,104,105],{"class":95}," page ",[67,107,108],{"class":80},"=",[67,110,111],{"class":84}," 1",[67,113,114],{"class":95},", posts ",[67,116,108],{"class":80},[67,118,119],{"class":95}," [];\n",[67,121,123,126,129,132],{"class":69,"line":122},4,[67,124,125],{"class":80},"while",[67,127,128],{"class":95}," (",[67,130,131],{"class":84},"true",[67,133,134],{"class":95},") {\n",[67,136,138,141,144,146,149,153,156,159,162,165,168,171],{"class":69,"line":137},5,[67,139,140],{"class":80},"  const",[67,142,143],{"class":84}," r",[67,145,88],{"class":80},[67,147,148],{"class":80}," await",[67,150,152],{"class":151},"sScJk"," fetch",[67,154,155],{"class":95},"(",[67,157,158],{"class":91},"`${",[67,160,161],{"class":95},"base",[67,163,164],{"class":91},"}\u002Fposts?per_page=100&page=${",[67,166,167],{"class":95},"page",[67,169,170],{"class":91},"}&_embed=1&status=publish`",[67,172,173],{"class":95},");\n",[67,175,177,180,182,185,188,191],{"class":69,"line":176},6,[67,178,179],{"class":80},"  if",[67,181,128],{"class":95},[67,183,184],{"class":80},"!",[67,186,187],{"class":95},"r.ok) ",[67,189,190],{"class":80},"break",[67,192,96],{"class":95},[67,194,196,199,202,204,207,209,212,215,218],{"class":69,"line":195},7,[67,197,198],{"class":95},"  posts.",[67,200,201],{"class":151},"push",[67,203,155],{"class":95},[67,205,206],{"class":80},"...",[67,208,155],{"class":95},[67,210,211],{"class":80},"await",[67,213,214],{"class":95}," r.",[67,216,217],{"class":151},"json",[67,219,220],{"class":95},"()));\n",[67,222,224,226,229,232,235,238,241,244,246,249,252,254],{"class":69,"line":223},8,[67,225,179],{"class":80},[67,227,228],{"class":95}," (page",[67,230,231],{"class":80},"++",[67,233,234],{"class":80}," >=",[67,236,237],{"class":151}," Number",[67,239,240],{"class":95},"(r.headers.",[67,242,243],{"class":151},"get",[67,245,155],{"class":95},[67,247,248],{"class":91},"'x-wp-totalpages'",[67,250,251],{"class":95},"))) ",[67,253,190],{"class":80},[67,255,96],{"class":95},[67,257,259],{"class":69,"line":258},9,[67,260,261],{"class":95},"}\n",[67,263,265],{"class":69,"line":264},10,[67,266,267],{"class":73},"\u002F\u002F posts[i]: { slug, date, modified, title.rendered, content.rendered, categories, tags, link, _embedded }\n",[14,269,270,271,274,275,278],{},"Convert HTML bodies to Markdown with ",[64,272,273],{},"turndown",", adding rules for what WordPress emits: ",[64,276,277],{},"[caption]"," wrappers become figures, Gutenberg code blocks keep their language, embeds become a component or a plain link, and gallery blocks become an image list. Anything unrecognised is kept as raw HTML and logged — on this site 43 posts needed hand attention, mostly old plugin shortcodes.",[57,280,282],{"className":59,"code":281,"language":61,"meta":62,"style":62},"td.addRule('wpCode', {\n  filter: (n) => n.nodeName === 'PRE' && n.classList.contains('wp-block-code'),\n  replacement: (_, n) => `\\n\\n\\`\\`\\`${n.querySelector('code')?.className.replace('language-', '') ?? ''}\\n${n.textContent}\\n\\`\\`\\`\\n\\n`,\n});\n",[64,283,284,300,344,437],{"__ignoreMap":62},[67,285,286,289,292,294,297],{"class":69,"line":70},[67,287,288],{"class":95},"td.",[67,290,291],{"class":151},"addRule",[67,293,155],{"class":95},[67,295,296],{"class":91},"'wpCode'",[67,298,299],{"class":95},", {\n",[67,301,302,305,308,312,315,318,321,324,327,330,333,336,338,341],{"class":69,"line":77},[67,303,304],{"class":151},"  filter",[67,306,307],{"class":95},": (",[67,309,311],{"class":310},"s4XuR","n",[67,313,314],{"class":95},") ",[67,316,317],{"class":80},"=>",[67,319,320],{"class":95}," n.nodeName ",[67,322,323],{"class":80},"===",[67,325,326],{"class":91}," 'PRE'",[67,328,329],{"class":80}," &&",[67,331,332],{"class":95}," n.classList.",[67,334,335],{"class":151},"contains",[67,337,155],{"class":95},[67,339,340],{"class":91},"'wp-block-code'",[67,342,343],{"class":95},"),\n",[67,345,346,349,351,354,357,359,361,363,366,369,372,374,376,379,381,384,387,390,392,395,397,400,402,405,407,410,413,416,418,420,422,425,428,431,434],{"class":69,"line":99},[67,347,348],{"class":151},"  replacement",[67,350,307],{"class":95},[67,352,353],{"class":310},"_",[67,355,356],{"class":95},", ",[67,358,311],{"class":310},[67,360,314],{"class":95},[67,362,317],{"class":80},[67,364,365],{"class":91}," `",[67,367,368],{"class":84},"\\n\\n\\`\\`\\`",[67,370,371],{"class":91},"${",[67,373,311],{"class":95},[67,375,30],{"class":91},[67,377,378],{"class":151},"querySelector",[67,380,155],{"class":91},[67,382,383],{"class":91},"'code'",[67,385,386],{"class":91},")?.",[67,388,389],{"class":95},"className",[67,391,30],{"class":91},[67,393,394],{"class":151},"replace",[67,396,155],{"class":91},[67,398,399],{"class":91},"'language-'",[67,401,356],{"class":91},[67,403,404],{"class":91},"''",[67,406,314],{"class":91},[67,408,409],{"class":80},"??",[67,411,412],{"class":91}," ''}",[67,414,415],{"class":84},"\\n",[67,417,371],{"class":91},[67,419,311],{"class":95},[67,421,30],{"class":91},[67,423,424],{"class":95},"textContent",[67,426,427],{"class":91},"}",[67,429,430],{"class":84},"\\n\\`\\`\\`\\n\\n",[67,432,433],{"class":91},"`",[67,435,436],{"class":95},",\n",[67,438,439],{"class":69,"line":122},[67,440,441],{"class":95},"});\n",[14,443,444],{},"Front matter comes from the API fields: title, date, updated date, categories and tags (resolved from IDs), excerpt, featured image and the original post ID, which is useful for redirects.",[32,446,448],{"id":447},"step-2-localise-media","Step 2: Localise Media",[14,450,451,452,455,456,459],{},"Post bodies reference ",[64,453,454],{},"https:\u002F\u002Fblog.example.com\u002Fwp-content\u002Fuploads\u002F2021\u002F03\u002Fdiagram-1024x576.png",", often a resized variant. Download the original of each referenced image, store it next to the post (or in ",[64,457,458],{},"src\u002Fassets\u002F","), and rewrite references to local paths so Astro's image pipeline generates modern formats and sizes:",[57,461,465],{"className":462,"code":463,"language":464,"meta":62,"style":62},"language-bash shiki shiki-themes github-light github-dark","grep -rhoE 'https:\u002F\u002Fblog\\.example\\.com\u002Fwp-content\u002Fuploads\u002F[^\"'\"'\"' )]+' src\u002Fcontent\u002Fposts \\\n  | sed -E 's\u002F-[0-9]+x[0-9]+(\\.[a-z]+)$\u002F\\1\u002F' | sort -u > media.txt\nwc -l media.txt      # 6,412 originals\n","bash",[64,466,467,484,513],{"__ignoreMap":62},[67,468,469,472,475,478,481],{"class":69,"line":70},[67,470,471],{"class":151},"grep",[67,473,474],{"class":84}," -rhoE",[67,476,477],{"class":91}," 'https:\u002F\u002Fblog\\.example\\.com\u002Fwp-content\u002Fuploads\u002F[^\"'\"'\"' )]+'",[67,479,480],{"class":91}," src\u002Fcontent\u002Fposts",[67,482,483],{"class":84}," \\\n",[67,485,486,489,492,495,498,501,504,507,510],{"class":69,"line":77},[67,487,488],{"class":80},"  |",[67,490,491],{"class":151}," sed",[67,493,494],{"class":84}," -E",[67,496,497],{"class":91}," 's\u002F-[0-9]+x[0-9]+(\\.[a-z]+)$\u002F\\1\u002F'",[67,499,500],{"class":80}," |",[67,502,503],{"class":151}," sort",[67,505,506],{"class":84}," -u",[67,508,509],{"class":80}," >",[67,511,512],{"class":91}," media.txt\n",[67,514,515,518,521,524],{"class":69,"line":99},[67,516,517],{"class":151},"wc",[67,519,520],{"class":84}," -l",[67,522,523],{"class":91}," media.txt",[67,525,526],{"class":73},"      # 6,412 originals\n",[14,528,529,530,533,534,30],{},"Stripping the ",[64,531,532],{},"-1024x576"," suffix fetches the original upload rather than a WordPress-generated thumbnail, so the new pipeline starts from full resolution. The pipeline itself is described in ",[21,535,537],{"href":536},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro\u002F","Image Optimization Pipelines in Astro",[539,540,541,715],"figure",{},[542,543,550,551,550,555,550,559,550,566,550,701],"svg",{"viewBox":544,"role":545,"ariaLabelledBy":546,"xmlns":549},"0 0 760 290","img",[547,548],"wpm-flow-title","wpm-flow-desc","http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg","\n  ",[552,553,554],"title",{"id":547},"WordPress to static migration pipeline",[556,557,558],"desc",{"id":548},"The WordPress REST API provides posts, taxonomies and comments. A conversion script turns HTML into Markdown with front matter, downloads original media files and rewrites their references, and writes comments to data files. The static generator builds pages with the same permalinks, and a redirect map covers query-string IDs, attachment pages and dropped archives.",[560,561],"rect",{"x":562,"y":562,"width":563,"height":564,"fill":565},"0","760","290","#ffffff",[567,568,570,571,570,579,570,589,570,595,570,601,570,610,570,616,570,619,570,623,570,626,570,630,570,635,570,639,570,642,570,649,570,653,570,658,570,662,570,666,570,697,550],"g",{"style":569},"font-family:system-ui, sans-serif;font-size:12px","\n    ",[572,573,578],"text",{"x":574,"y":575,"fill":576,"style":577},"380","28","#1f2937","font-size:16px;font-weight:700;text-anchor:middle","From database to files, with nothing left behind",[560,580],{"x":581,"y":582,"width":583,"height":584,"rx":585,"fill":586,"opacity":587,"stroke":586,"style":588},"20","100","150","70","10","#1982c4","0.14","stroke-width:1.5px",[572,590,594],{"x":591,"y":592,"fill":576,"style":593},"95","128","font-weight:700;text-anchor:middle","WordPress",[572,596,600],{"x":591,"y":597,"fill":598,"style":599},"148","#556071","font-size:11px;text-anchor:middle","REST API",[560,602],{"x":603,"y":604,"width":605,"height":606,"rx":607,"fill":608,"stroke":609,"style":588},"210","50","170","44","8","#f8fafc","#d9e2ef",[572,611,615],{"x":612,"y":613,"fill":576,"style":614},"295","77","text-anchor:middle","posts → Markdown",[560,617],{"x":603,"y":618,"width":605,"height":606,"rx":607,"fill":608,"stroke":609,"style":588},"112",[572,620,622],{"x":612,"y":621,"fill":576,"style":614},"139","6,412 media → local",[560,624],{"x":603,"y":625,"width":605,"height":606,"rx":607,"fill":608,"stroke":609,"style":588},"174",[572,627,629],{"x":612,"y":628,"fill":576,"style":614},"201","comments → data",[560,631],{"x":632,"y":582,"width":633,"height":584,"rx":585,"fill":634,"opacity":587,"stroke":634,"style":588},"430","140","#6a4c93",[572,636,638],{"x":637,"y":592,"fill":576,"style":593},"500","Astro build",[572,640,641],{"x":637,"y":597,"fill":598,"style":599},"same permalinks",[560,643],{"x":644,"y":584,"width":645,"height":604,"rx":607,"fill":646,"opacity":647,"stroke":648,"style":588},"610","130","#8ac926","0.18","#5a8a16",[572,650,652],{"x":651,"y":582,"fill":576,"style":593},"675","static pages",[560,654],{"x":644,"y":583,"width":645,"height":604,"rx":607,"fill":655,"opacity":656,"stroke":657,"style":588},"#ffca3a","0.24","#a97b00",[572,659,661],{"x":651,"y":660,"fill":576,"style":593},"173","redirect map",[572,663,665],{"x":651,"y":664,"fill":598,"style":599},"190","?p=, attachments",[567,667,670,671,670,676,670,679,670,682,670,685,670,688,670,691,670,694,570],{"stroke":598,"fill":668,"style":669},"none","stroke-width:2px","\n      ",[672,673],"path",{"d":674,"style":675},"M172 120 L206 76","marker-end:url(#wpm-arrow)",[672,677],{"d":678,"style":675},"M172 135 L206 135",[672,680],{"d":681,"style":675},"M172 150 L206 194",[672,683],{"d":684,"style":675},"M382 72 L426 118",[672,686],{"d":687,"style":675},"M382 135 L426 135",[672,689],{"d":690,"style":675},"M382 196 L426 152",[672,692],{"d":693,"style":675},"M572 125 L606 98",[672,695],{"d":696,"style":675},"M572 145 L606 172",[572,698,700],{"x":574,"y":699,"fill":598,"style":599},"262","Every URL the old site served either still exists or redirects in one hop",[702,703,570,704,550],"defs",{},[705,706,670,712,570],"marker",{"id":707,"viewBox":708,"refX":607,"refY":709,"markerWidth":710,"markerHeight":710,"orient":711},"wpm-arrow","0 0 10 10","5","7","auto-start-reverse",[672,713],{"d":714,"fill":598},"M0 0 L10 5 L0 10 z",[716,717,718],"figcaption",{},"Media and URLs are where WordPress migrations usually go wrong; the text converts easily by comparison.",[32,720,722],{"id":721},"step-3-keep-every-url","Step 3: Keep Every URL",[14,724,725,726,729,730,733],{},"WordPress permalinks are usually ",[64,727,728],{},"\u002F%year%\u002F%monthnum%\u002F%postname%\u002F",". Reproduce them exactly in the generator — in Astro, a ",[64,731,732],{},"src\u002Fpages\u002F[year]\u002F[month]\u002F[slug].astro"," route whose params come from each post's date and slug. Then generate redirects for everything that cannot be reproduced:",[37,735,736,746,753,756],{},[40,737,738,741,742,745],{},[64,739,740],{},"\u002F?p=1234"," and ",[64,743,744],{},"\u002F?page_id=56"," — WordPress short links, often in old emails and forums. Map post ID to new URL from the export.",[40,747,748,749,752],{},"Attachment pages (",[64,750,751],{},"\u002F2021\u002F03\u002Fpost-slug\u002Fdiagram-2\u002F",") — redirect to the post.",[40,754,755],{},"Author, date and feed variants you choose not to keep — redirect to the nearest equivalent.",[40,757,758,741,761,764,765,767],{},[64,759,760],{},"\u002Ffeed\u002F",[64,762,763],{},"\u002Fcategory\u002Fx\u002Ffeed\u002F"," — keep an RSS feed at ",[64,766,760],{}," or redirect.",[14,769,770,771,774,775,779],{},"Query-string redirects need an edge rule or function rather than a ",[64,772,773],{},"_redirects"," file on most hosts; the redirect mechanics are in ",[21,776,778],{"href":777},"\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",". A URL diff between the WordPress sitemap and the new build, run in CI, made \"every URL still works\" a checked fact: 2,310 old URLs, 1,850 preserved exactly, 460 redirected, 0 broken.",[539,781,782,849],{},[542,783,550,788,550,791,550,794,550,797],{"viewBox":784,"role":545,"ariaLabelledBy":785,"xmlns":549},"0 0 760 240",[786,787],"wpm-url-title","wpm-url-desc",[552,789,790],{"id":786},"What happened to 2,310 WordPress URLs",[556,792,793],{"id":787},"A stacked bar of old URLs: 1,850 post URLs preserved exactly, 214 category and tag archives redirected, 131 attachment pages redirected to their posts, 88 date archives redirected, 27 author and feed variants redirected, and none left broken.",[560,795],{"x":562,"y":562,"width":563,"height":796,"fill":565},"240",[567,798,570,799,570,802,570,809,570,814,570,819,570,824,570,828,570,831,570,835,570,840,570,845,550],{"style":569},[572,800,801],{"x":574,"y":575,"fill":576,"style":577},"2,310 old URLs: preserved or redirected, none broken",[560,803],{"x":804,"y":584,"width":805,"height":806,"fill":646,"opacity":807,"stroke":648,"style":808},"40","545","46","0.35","stroke-width:1px",[572,810,813],{"x":811,"y":812,"fill":576,"style":614},"312","98","posts preserved exactly · 1,850",[560,815],{"x":816,"y":584,"width":817,"height":806,"fill":655,"opacity":818,"stroke":657,"style":808},"585","63","0.4",[560,820],{"x":821,"y":584,"width":822,"height":806,"fill":586,"opacity":823,"stroke":586,"style":808},"648","39","0.25",[560,825],{"x":826,"y":584,"width":827,"height":806,"fill":634,"opacity":823,"stroke":634,"style":808},"687","26",[560,829],{"x":830,"y":584,"width":607,"height":806,"fill":608,"stroke":598,"style":808},"713",[572,832,834],{"x":833,"y":633,"fill":598,"style":599},"616","archives 214",[572,836,839],{"x":837,"y":838,"fill":598,"style":599},"668","158","attachments 131",[572,841,844],{"x":842,"y":843,"fill":598,"style":599},"700","176","dates 88 · other 27",[572,846,848],{"x":574,"y":847,"fill":598,"style":599},"220","Checked in CI by diffing the old sitemap and crawl against the new build plus its redirect map",[716,850,851],{},"Most of the work is in the thin slices on the right: URL types readers rarely think about but links still point to.",[32,853,855],{"id":854},"step-4-comments-forms-and-search","Step 4: Comments, Forms and Search",[14,857,858,862,863,866,867,871,872,875,876,30],{},[859,860,861],"strong",{},"Comments",": 14,200 existing comments were exported from the REST API into one JSON file per post and rendered statically under each article. New comments moved to giscus (GitHub Discussions) loaded on scroll; the old comment count stayed visible so the history was not lost. ",[859,864,865],{},"Contact form",": replaced with a serverless function — see ",[21,868,870],{"href":869},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fhandling-form-submissions-on-a-static-site\u002F","Handling Form Submissions on a Static Site",". ",[859,873,874],{},"Search",": WordPress's database search became Pagefind, as in ",[21,877,879],{"href":878},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fadding-pagefind-to-an-astro-site\u002F","Adding Pagefind to an Astro Site",[32,881,883],{"id":882},"seo-details-that-carry-over","SEO Details That Carry Over",[14,885,886,887,741,890,893],{},"Search visibility depends on more than URLs. Carry across the SEO metadata WordPress plugins stored: Yoast or Rank Math titles and meta descriptions live in post meta (exposed through the REST API with the plugin's fields enabled) and belong in front matter as ",[64,888,889],{},"seoTitle",[64,891,892],{},"description",". Canonical URLs, noindex flags on thin pages, and Open Graph images should map one to one. Structured data changes shape — a plugin's generic JSON-LD becomes whatever your templates emit — so validate a sample of post types with a schema validator before cutover. Finally, keep publish and update dates exactly as they were; changing every post's date to the migration day looks to readers and search engines like a mass republish. On this site, 1,612 posts had custom meta descriptions, and every one was preserved.",[32,895,897],{"id":896},"measured-impact","Measured Impact",[899,900,901,917],"table",{},[902,903,904],"thead",{},[905,906,907,911,914],"tr",{},[908,909,910],"th",{},"Measure",[908,912,913],{},"WordPress (managed host, caching plugin)",[908,915,916],{},"Astro on Cloudflare Pages",[918,919,920,932,943,954,965,975,986],"tbody",{},[905,921,922,926,929],{},[923,924,925],"td",{},"TTFB p75 (RUM)",[923,927,928],{},"620 ms",[923,930,931],{},"48 ms",[905,933,934,937,940],{},[923,935,936],{},"LCP p75, mobile",[923,938,939],{},"3.4 s",[923,941,942],{},"1.4 s",[905,944,945,948,951],{},[923,946,947],{},"JavaScript per post page",[923,949,950],{},"412 KB (theme, plugins, jQuery)",[923,952,953],{},"14 KB",[905,955,956,959,962],{},[923,957,958],{},"Page weight, median post",[923,960,961],{},"1.9 MB",[923,963,964],{},"310 KB",[905,966,967,970,973],{},[923,968,969],{},"Plugins to patch",[923,971,972],{},"23",[923,974,562],{},[905,976,977,980,983],{},[923,978,979],{},"Monthly hosting",[923,981,982],{},"45 USD",[923,984,985],{},"0 USD",[905,987,988,991,994],{},[923,989,990],{},"Build time",[923,992,993],{},"—",[923,995,996],{},"74 s (1,850 posts, 6,400 images, warm cache 19 s)",[539,998,999,1080],{},[542,1000,550,1005,550,1008,550,1011,550,1014],{"viewBox":1001,"role":545,"ariaLabelledBy":1002,"xmlns":549},"0 0 760 270",[1003,1004],"wpm-perf-title","wpm-perf-desc",[552,1006,1007],{"id":1003},"Field performance before and after",[556,1009,1010],{"id":1004},"Paired bars. Time to first byte p75 fell from 620 milliseconds to 48. LCP p75 on mobile fell from 3.4 seconds to 1.4. Median page weight fell from 1.9 megabytes to 310 kilobytes.",[560,1012],{"x":562,"y":562,"width":563,"height":1013,"fill":565},"270",[567,1015,570,1016,570,1019,570,1025,570,1033,570,1036,570,1039,570,1043,570,1046,570,1049,570,1052,570,1056,570,1060,570,1064,570,1067,570,1070,570,1073,570,1076,550],{"style":569},[572,1017,1018],{"x":574,"y":575,"fill":576,"style":577},"Same content, before and after (field p75 \u002F median)",[572,1020,1024],{"x":1021,"y":1022,"fill":576,"style":1023},"30","80","font-weight:700","TTFB",[560,1026],{"x":633,"y":1027,"width":637,"height":1028,"rx":1029,"fill":1030,"opacity":1031,"stroke":1032,"style":808},"64","18","3","#ff595e","0.28","#d83b41",[572,1034,928],{"x":821,"y":1035,"fill":576},"78",[560,1037],{"x":633,"y":1038,"width":822,"height":1028,"rx":1029,"fill":646,"opacity":818,"stroke":648,"style":808},"86",[572,1040,931],{"x":1041,"y":582,"fill":1042,"style":1023},"187","#3f6410",[572,1044,1045],{"x":1021,"y":633,"fill":576,"style":1023},"LCP",[560,1047],{"x":633,"y":1048,"width":637,"height":1028,"rx":1029,"fill":1030,"opacity":1031,"stroke":1032,"style":808},"124",[572,1050,939],{"x":821,"y":1051,"fill":576},"138",[560,1053],{"x":633,"y":1054,"width":1055,"height":1028,"rx":1029,"fill":646,"opacity":818,"stroke":648,"style":808},"146","206",[572,1057,942],{"x":1058,"y":1059,"fill":1042,"style":1023},"354","160",[572,1061,1063],{"x":1021,"y":1062,"fill":576,"style":1023},"200","Page weight",[560,1065],{"x":633,"y":1066,"width":637,"height":1028,"rx":1029,"fill":1030,"opacity":1031,"stroke":1032,"style":808},"184",[572,1068,961],{"x":821,"y":1069,"fill":576},"198",[560,1071],{"x":633,"y":1055,"width":1072,"height":1028,"rx":1029,"fill":646,"opacity":818,"stroke":648,"style":808},"82",[572,1074,964],{"x":1075,"y":847,"fill":1042,"style":1023},"230",[572,1077,1079],{"x":574,"y":1078,"fill":598,"style":599},"256","RUM over four weeks before and after cutover; bars scaled per metric",[716,1081,1082],{},"The TTFB change comes from removing PHP and the database; the LCP and weight changes from removing the theme's JavaScript and resizing images properly.",[14,1084,1085],{},"Organic search traffic dipped 4% in the first two weeks as crawlers processed redirects, then recovered and was 11% above the pre-migration baseline after three months, which the team attributes to the Core Web Vitals improvement and the cleaned-up URL structure.",[32,1087,1089],{"id":1088},"pitfalls-rollback","Pitfalls & Rollback",[37,1091,1092,1102,1112,1118,1124,1130,1140],{},[40,1093,1094,1097,1098,1101],{},[859,1095,1096],{},"Hot-linking old media."," Leaving ",[64,1099,1100],{},"wp-content\u002Fuploads"," URLs in posts ties the new site to the old server. Localise every file.",[40,1103,1104,1111],{},[859,1105,1106,1107,1110],{},"Forgetting ",[64,1108,1109],{},"?p="," links."," They are common in older inbound links; map them from post IDs.",[40,1113,1114,1117],{},[859,1115,1116],{},"Dropping comments silently."," Readers and authors notice. Keep existing threads visible even if new comments move elsewhere.",[40,1119,1120,1123],{},[859,1121,1122],{},"Converting in one untested pass."," Run the converter on a sample of 50 posts across different years and editors first; WordPress markup changed a lot between the classic editor and Gutenberg, and old posts break different rules.",[40,1125,1126,1129],{},[859,1127,1128],{},"Scheduled and private posts."," The REST API returns only published posts by default; export drafts, scheduled and private posts separately if they must survive the move.",[40,1131,1132,1135,1136,30],{},[859,1133,1134],{},"No editor plan."," If writers used the WordPress admin, give them a Git-backed CMS or keep WordPress headless; see ",[21,1137,1139],{"href":1138},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fwiring-a-headless-cms-to-a-static-build\u002F","Wiring a Headless CMS to a Static Build",[40,1141,1142,1145],{},[859,1143,1144],{},"Rollback:"," keep WordPress running, read-only, on a separate hostname until the static site has four clean weeks; switching DNS back is the rollback.",[32,1147,1149],{"id":1148},"conclusion","Conclusion",[14,1151,1152],{},"A WordPress-to-static migration is mostly about preservation: every URL, every image and every comment thread readers relied on. Exporting through the REST API, converting with explicit rules for WordPress markup, localising original media, reproducing permalinks and generating one-hop redirects for the rest moved a 1,850-post blog with zero broken URLs — and cut TTFB from 620 to 48 ms, LCP from 3.4 to 1.4 seconds, and hosting cost to zero.",[32,1154,1156],{"id":1155},"faq","FAQ",[1158,1159,1161],"h3",{"id":1160},"how-do-i-get-wordpress-content-into-markdown","How do I get WordPress content into Markdown?",[14,1163,1164],{},"Export with the built-in WordPress export tool or the REST API, then convert the HTML post bodies to Markdown with a converter such as wordpress-export-to-markdown or a small script using turndown. Shortcodes and block markup need custom rules.",[1158,1166,1168],{"id":1167},"what-happens-to-wordpress-urls-after-migration","What happens to WordPress URLs after migration?",[14,1170,1171],{},"Configure the generator's permalinks to reproduce the WordPress structure exactly, such as \u002F2021\u002F03\u002Fpost-slug\u002F, and generate redirects for anything that cannot match, including ?p=123 links, category archives and attachment pages.",[1158,1173,1175],{"id":1174},"what-replaces-comments-and-contact-forms","What replaces comments and contact forms?",[14,1177,1178],{},"Existing comments can be exported into each post's front matter or a data file and rendered statically. New comments can go to a lightweight service, GitHub Discussions via giscus, or be closed. Contact forms move to a host form feature or a serverless function.",[1158,1180,1182],{"id":1181},"is-it-worth-it-for-a-small-blog","Is it worth it for a small blog?",[14,1184,1185],{},"If the site is mostly articles and rarely changes structure, usually yes: hosting becomes free or nearly so, there is no plugin or PHP patching, and pages load several times faster. If non-technical editors depend on the WordPress admin, plan for a CMS or keep WordPress headless.",[32,1187,1189],{"id":1188},"related","Related",[37,1191,1192,1201,1208,1213,1220],{},[40,1193,1194,1197,1198,1200],{},[859,1195,1196],{},"Parent:"," ",[21,1199,24],{"href":23}," — the general migration playbook.",[40,1202,1203,1207],{},[21,1204,1206],{"href":1205},"\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"," — scripting the metadata conversion.",[40,1209,1210,1212],{},[21,1211,778],{"href":777}," — the redirect map in depth.",[40,1214,1215,1219],{},[21,1216,1218],{"href":1217},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Feleventy-vs-jekyll-for-markdown-heavy-blogs\u002F","Eleventy vs Jekyll for Markdown-Heavy Blogs"," — other destinations for a blog.",[40,1221,1222,1226],{},[21,1223,1225],{"href":1224},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge\u002F","Logging 404s at the Edge"," — catching any URLs the map missed.",[1228,1229,1230],"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 .sj4cs, html code.shiki .sj4cs{--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}html pre.shiki code .sVt8B, html code.shiki .sVt8B{--shiki-default:#24292E;--shiki-dark:#E1E4E8}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);}html pre.shiki code .s4XuR, html code.shiki .s4XuR{--shiki-default:#E36209;--shiki-dark:#FFAB70}",{"title":62,"searchDepth":77,"depth":77,"links":1232},[1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1248],{"id":34,"depth":77,"text":35},{"id":51,"depth":77,"text":52},{"id":447,"depth":77,"text":448},{"id":721,"depth":77,"text":722},{"id":854,"depth":77,"text":855},{"id":882,"depth":77,"text":883},{"id":896,"depth":77,"text":897},{"id":1088,"depth":77,"text":1089},{"id":1148,"depth":77,"text":1149},{"id":1155,"depth":77,"text":1156,"children":1243},[1244,1245,1246,1247],{"id":1160,"depth":99,"text":1161},{"id":1167,"depth":99,"text":1168},{"id":1174,"depth":99,"text":1175},{"id":1181,"depth":99,"text":1182},{"id":1188,"depth":77,"text":1189},[1250,1253,1256,1257],{"name":1251,"item":1252},"Home","\u002F",{"name":1254,"item":1255},"Choosing the Right Static Site Generator for Production","\u002Fchoosing-the-right-static-site-generator-for-production\u002F",{"name":24,"item":23},{"name":5,"item":1258},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator\u002F","2026-09-18","Move a WordPress blog to a static generator: export posts to Markdown, localise media, keep every URL, replace comments and forms, and measure the gain.","md",[1263,1264,1265,1266],{"q":1161,"a":1164},{"q":1168,"a":1171},{"q":1175,"a":1178},{"q":1182,"a":1267},{"If the site is mostly articles and rarely changes structure, usually yes":1268},"hosting becomes free or nearly so, there is no plugin or PHP patching, and pages load several times faster. If non-technical editors depend on the WordPress admin, plan for a CMS or keep WordPress headless.",{},true,"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator",{"title":5,"description":1260},"choosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-wordpress-to-a-static-site-generator\u002Findex","article","gnakrziUCG2MoV2CuH-WE6Y_PWqXVsY0BCgBgA8TZiw",[1277,1280,1283,1286,1289,1292,1295,1298,1301,1304,1307,1310,1313,1316,1319,1322,1325,1328,1331,1334,1336,1338,1341,1344,1347,1350,1353,1355,1357,1359,1362,1365,1368,1369,1372,1375,1378,1381,1384,1387,1390,1392,1395,1398,1401,1404,1407,1410,1413,1416,1419,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,1495,1498,1501,1504,1507,1510,1513,1516,1519,1522,1525,1528,1531,1534,1537,1540,1543,1546,1549,1552,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,1638,1641,1644,1647,1650,1653,1656,1659,1662,1665,1668,1671,1674,1677,1680,1683,1686,1689,1692,1695,1697,1700,1703,1706,1709,1712,1715,1718,1721,1724,1727,1730,1733,1736,1739,1742,1745,1748,1751,1754,1757,1760,1763,1766,1769,1772,1775,1778,1781,1784,1787,1790,1793,1796,1799,1801,1804,1807,1810],{"path":1278,"title":1279},"\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":1281,"title":1282},"\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":1284,"title":1285},"\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":1287,"title":1288},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fastro-vs-eleventy-for-documentation-sites","Astro vs Eleventy for Documentation Sites",{"path":1290,"title":1291},"\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":1293,"title":1294},"\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":1296,"title":1297},"\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":1299,"title":1300},"\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":1302,"title":1303},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress","Docs Frameworks: Docusaurus, Starlight and VitePress",{"path":1305,"title":1306},"\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":1308,"title":1309},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fmigrating-from-mkdocs-to-starlight","Migrating from MkDocs to Starlight",{"path":1311,"title":1312},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fversioned-documentation-with-docusaurus","Versioned Documentation with Docusaurus",{"path":1314,"title":1315},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fdocs-frameworks-docusaurus-starlight-vitepress\u002Fvitepress-for-library-documentation","VitePress for Library Documentation",{"path":1317,"title":1318},"\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":1320,"title":1321},"\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":1323,"title":1324},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fhugo-build-times-for-large-repositories","Hugo Build Times for Large Repositories",{"path":1326,"title":1327},"\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":1329,"title":1330},"\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":1332,"title":1333},"\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":1335,"title":1254},"\u002Fchoosing-the-right-static-site-generator-for-production",{"path":1337,"title":1218},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Feleventy-vs-jekyll-for-markdown-heavy-blogs",{"path":1339,"title":1340},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem","Jekyll Plugin Ecosystem",{"path":1342,"title":1343},"\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":1345,"title":1346},"\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":1348,"title":1349},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fspeeding-up-slow-jekyll-builds","Speeding Up Slow Jekyll Builds",{"path":1351,"title":1352},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fjekyll-plugin-ecosystem\u002Fupgrading-jekyll-and-ruby-versions-safely","Upgrading Jekyll and Ruby Versions Safely",{"path":1354,"title":1206},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fconverting-front-matter-at-scale-during-migration",{"path":1356,"title":24},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators",{"path":1358,"title":778},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fkeeping-redirects-working-after-an-ssg-migration",{"path":1360,"title":1361},"\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":1363,"title":1364},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fmigrating-between-static-site-generators\u002Fmigrating-from-gatsby-to-astro","Migrating from Gatsby to Astro",{"path":1366,"title":1367},"\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":1271,"title":5},{"path":1370,"title":1371},"\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":1373,"title":1374},"\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":1376,"title":1377},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fnextjs-static-export-for-content-sites","Next.js Static Export for Content Sites",{"path":1379,"title":1380},"\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":1382,"title":1383},"\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":1385,"title":1386},"\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":1388,"title":1389},"\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":1391,"title":879},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fadding-pagefind-to-an-astro-site",{"path":1393,"title":1394},"\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":1396,"title":1397},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites","Search for Static Sites",{"path":1399,"title":1400},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Findexing-hugo-sites-with-pagefind","Indexing Hugo Sites with Pagefind",{"path":1402,"title":1403},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fmultilingual-search-on-static-sites","Multilingual Search on Static Sites",{"path":1405,"title":1406},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fsearch-for-static-sites\u002Fpagefind-vs-algolia-docsearch","Pagefind vs Algolia DocSearch",{"path":1408,"title":1409},"\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":1411,"title":1412},"\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":1414,"title":1415},"\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":1417,"title":1418},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix\u002Fevaluating-ssg-accessibility-defaults","Evaluating SSG Accessibility Defaults",{"path":1420,"title":29},"\u002Fchoosing-the-right-static-site-generator-for-production\u002Fssg-framework-selection-matrix",{"path":1422,"title":1423},"\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":1425,"title":1426},"\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":1428,"title":1429},"\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":1431,"title":1432},"\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":1434,"title":1435},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcdn-caching-rules-for-ssgs","CDN Caching Rules for SSGs",{"path":1437,"title":1438},"\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":1440,"title":1441},"\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":1443,"title":1444},"\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":1446,"title":1447},"\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":1449,"title":1450},"\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":1452,"title":1453},"\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":1455,"title":1456},"\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":1458,"title":1459},"\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":1461,"title":1462},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fcumulative-layout-shift-fixes-for-static-sites","Cumulative Layout Shift Fixes for Static Sites",{"path":1464,"title":1465},"\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":1467,"title":1468},"\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":1470,"title":1471},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Ffont-display-optional-vs-swap","font-display: optional vs swap",{"path":1473,"title":1474},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites","Font Loading Strategies for Static Sites",{"path":1476,"title":1477},"\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":1479,"title":1480},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Ffont-loading-strategies-for-static-sites\u002Fpreloading-fonts-without-double-downloads","Preloading Fonts Without Double Downloads",{"path":1482,"title":1483},"\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":1485,"title":1486},"\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":1488,"title":1489},"\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":1491,"title":1492},"\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":1494,"title":537},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fimage-optimization-pipelines-in-astro",{"path":1496,"title":1497},"\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":1499,"title":1500},"\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":1502,"title":1503},"\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":1505,"title":1506},"\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":1508,"title":1509},"\u002Fperformance-optimization-core-web-vitals-for-ssgs","Core Web Vitals Optimization for SSGs",{"path":1511,"title":1512},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Fastro-islands-vs-full-hydration-performance","Astro Islands vs Full Hydration Performance",{"path":1514,"title":1515},"\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":1517,"title":1518},"\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":1520,"title":1521},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering","JavaScript Hydration & Partial Rendering",{"path":1523,"title":1524},"\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":1526,"title":1527},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fjavascript-hydration-partial-rendering\u002Freplacing-react-islands-with-web-components","Replacing React Islands with Web Components",{"path":1529,"title":1530},"\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":1532,"title":1533},"\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":1535,"title":1536},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Flargest-contentful-paint-optimization-for-static-sites","Largest Contentful Paint Optimization for Static Sites",{"path":1538,"title":1539},"\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":1541,"title":1542},"\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":1544,"title":1545},"\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":1547,"title":1548},"\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":1550,"title":1551},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fperformance-budgets-and-lighthouse-ci","Performance Budgets and Lighthouse CI",{"path":1553,"title":1554},"\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":1556,"title":1557},"\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":1559,"title":1560},"\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":1562,"title":1563},"\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":1565,"title":1566},"\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":1568,"title":1569},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fauditing-unused-preloads","Auditing Unused Preloads",{"path":1571,"title":1572},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed","Resource Hints and Navigation Speed",{"path":1574,"title":1575},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Finstant-navigation-with-speculation-rules","Instant Navigation with Speculation Rules",{"path":1577,"title":1578},"\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":1580,"title":1581},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fresource-hints-and-navigation-speed\u002Fprefetching-links-in-astro","Prefetching Links in Astro",{"path":1583,"title":1584},"\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":1586,"title":1587},"\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":1589,"title":1590},"\u002Fperformance-optimization-core-web-vitals-for-ssgs\u002Fthird-party-script-performance-on-static-sites","Third-Party Script Performance on Static Sites",{"path":1592,"title":1593},"\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":1595,"title":1596},"\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":1598,"title":1599},"\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":1601,"title":1602},"\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":1604,"title":1605},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fautomating-eleventy-deployments-with-cloudflare-pages","Automating Eleventy Deployments on Cloudflare Pages",{"path":1607,"title":1608},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup\u002Fconfiguring-redirects-on-cloudflare-pages","Configuring Redirects on Cloudflare Pages",{"path":1610,"title":1611},"\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":1613,"title":1614},"\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":1616,"title":1617},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcloudflare-pages-edge-caching-setup","Cloudflare Pages Edge Caching Setup",{"path":1619,"title":1620},"\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":1622,"title":1623},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fchecking-links-in-pull-requests","Checking Links in Pull Requests",{"path":1625,"title":1626},"\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":1628,"title":1629},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Feditorial-checks-with-vale-in-ci","Editorial Checks with Vale in CI",{"path":1631,"title":1632},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams","Content Workflows for Documentation Teams",{"path":1634,"title":1635},"\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":1637,"title":1139},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fcontent-workflows-for-documentation-teams\u002Fwiring-a-headless-cms-to-a-static-build",{"path":1639,"title":1640},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fbuilding-astro-sites-with-github-actions","Building Astro Sites with GitHub Actions",{"path":1642,"title":1643},"\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":1645,"title":1646},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fdeploying-to-github-pages-with-actions","Deploying to GitHub Pages with Actions",{"path":1648,"title":1649},"\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":1651,"title":1652},"\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":1654,"title":1655},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds","GitHub Actions for Automated SSG Builds",{"path":1657,"title":1658},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fgithub-actions-for-automated-ssg-builds\u002Fmatrix-builds-for-multi-site-monorepos","Matrix Builds for Multi-Site Monorepos",{"path":1660,"title":1661},"\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":1663,"title":1664},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs\u002Fenabling-incremental-builds-in-eleventy","Enabling Incremental Builds in Eleventy",{"path":1666,"title":1667},"\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":1669,"title":1670},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fincremental-builds-and-build-caching-for-ssgs","Incremental Builds and Build Caching for SSGs",{"path":1672,"title":1673},"\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":1675,"title":1676},"\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":1678,"title":1679},"\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":1681,"title":1682},"\u002Fproduction-ready-deployment-cicd-workflows","Production-Ready Deployment & CI\u002FCD for SSGs",{"path":1684,"title":1685},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Falerting-on-cache-hit-ratio-drops","Alerting on Cache Hit Ratio Drops",{"path":1687,"title":1688},"\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":1690,"title":1691},"\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":1693,"title":1694},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production","Monitoring Static Sites in Production",{"path":1696,"title":1225},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fmonitoring-static-sites-in-production\u002Flogging-404s-at-the-edge",{"path":1698,"title":1699},"\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":1701,"title":1702},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fconfiguring-vercel-for-hugo-and-eleventy","Configuring Vercel for Hugo and Eleventy",{"path":1704,"title":1705},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies","Netlify vs Vercel Deployment Strategies",{"path":1707,"title":1708},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fnetlify-vs-vercel-deployment-strategies\u002Fnetlify-build-hooks-for-content-updates","Netlify Build Hooks for Content Updates",{"path":1710,"title":1711},"\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":1713,"title":1714},"\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":1716,"title":1717},"\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":1719,"title":1720},"\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":1722,"title":1723},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fcleaning-up-stale-preview-deployments","Cleaning Up Stale Preview Deployments",{"path":1725,"title":1726},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests","Preview Environments for Pull Requests",{"path":1728,"title":1729},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpassword-protecting-preview-deployments","Password-Protecting Preview Deployments",{"path":1731,"title":1732},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fpreviewing-headless-cms-drafts","Previewing Headless CMS Drafts",{"path":1734,"title":1735},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fpreview-environments-for-pull-requests\u002Fvisual-regression-testing-on-preview-deploys","Visual Regression Testing on Preview Deploys",{"path":1737,"title":1738},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fatomic-deploys-vs-incremental-uploads","Atomic Deploys vs Incremental Uploads",{"path":1740,"title":1741},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Fcanary-releases-for-static-sites","Canary Releases for Static Sites",{"path":1743,"title":1744},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites\u002Ffeature-flags-on-static-sites","Feature Flags on Static Sites",{"path":1746,"title":1747},"\u002Fproduction-ready-deployment-cicd-workflows\u002Frollbacks-and-deploy-safety-for-static-sites","Rollbacks and Deploy Safety for Static Sites",{"path":1749,"title":1750},"\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":1752,"title":1753},"\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":1755,"title":1756},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fauditing-npm-dependencies-in-ssg-pipelines","Auditing npm Dependencies in SSG Pipelines",{"path":1758,"title":1759},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fenabling-hsts-and-preload-safely","Enabling HSTS and Preload Safely",{"path":1761,"title":1762},"\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":1764,"title":1765},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites","Security Headers and Hardening for Static Sites",{"path":1767,"title":1768},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsecuring-deploy-credentials-with-github-oidc","Securing Deploy Credentials with GitHub OIDC",{"path":1770,"title":1771},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fsecurity-headers-for-static-sites\u002Fsubresource-integrity-for-third-party-assets","Subresource Integrity for Third-Party Assets",{"path":1773,"title":1774},"\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":1776,"title":1777},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fclean-urls-and-trailing-slashes-on-s3","Clean URLs and Trailing Slashes on S3",{"path":1779,"title":1780},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fcloudfront-functions-for-redirects","CloudFront Functions for Redirects",{"path":1782,"title":1783},"\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":1785,"title":1786},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites","Self-Hosting Static Sites on S3, Nginx and Caddy",{"path":1788,"title":1789},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-caddy","Serving a Static Site with Caddy",{"path":1791,"title":1792},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fserving-a-static-site-with-nginx","Serving a Static Site with Nginx",{"path":1794,"title":1795},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fself-hosting-static-sites\u002Fzero-downtime-deploys-with-symlink-swaps","Zero-Downtime Deploys with Symlink Swaps",{"path":1797,"title":1798},"\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":1800,"title":870},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fhandling-form-submissions-on-a-static-site",{"path":1802,"title":1803},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites","Serverless Functions for Static Sites",{"path":1805,"title":1806},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fnetlify-functions-vs-cloudflare-workers","Netlify Functions vs Cloudflare Workers",{"path":1808,"title":1809},"\u002Fproduction-ready-deployment-cicd-workflows\u002Fserverless-functions-for-static-sites\u002Fprotecting-a-static-site-behind-authentication","Protecting a Static Site Behind Authentication",{"path":1811,"title":1812},"\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",1789722847228]