From c624975eafda9d657eb66206d35a64f527c0394b Mon Sep 17 00:00:00 2001 From: Alexandra Goff Date: Mon, 14 Oct 2024 14:19:04 -0700 Subject: [PATCH] feat: robots.txt generation (#574) --- app/robots.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app/robots.ts diff --git a/app/robots.ts b/app/robots.ts new file mode 100644 index 00000000..fc42c639 --- /dev/null +++ b/app/robots.ts @@ -0,0 +1,10 @@ +import { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: { + userAgent: "*", + allow: "/", + }, + }; +}