Create robots file

This commit is contained in:
Quinn Hegeman
2026-03-08 13:04:41 +01:00
parent a1b202686f
commit 2411c6fdc8
4 changed files with 95 additions and 0 deletions

4
astro/src/types/settings/robots.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
type RobotsSettings = {
crawlers: string[];
extraContent: string | null;
}