Disallow search crawling
All checks were successful
Deploy to birb co. production / deploy (push) Successful in 6s

This commit is contained in:
2026-02-25 16:58:40 -08:00
parent 2cb09552c2
commit a4b8468cba

View File

@@ -274,6 +274,10 @@ def main() -> None:
output.write_text(html_content, encoding="utf-8")
print(f"Built {output}")
robots = PUBLIC_DIR / "robots.txt"
robots.write_text("User-agent: *\nDisallow: /\n", encoding="utf-8")
print(f"Built {robots}")
print(f"Zips in {ZIPS_DIR}:")
for z in sorted(ZIPS_DIR.iterdir()):
print(f" {z.name}")