From cb481e8f6796f292ebc22422a37dee379b6d11ef Mon Sep 17 00:00:00 2001 From: Alexandra Goff Date: Mon, 14 Oct 2024 14:05:23 -0700 Subject: [PATCH] feat: robots.txt generation --- 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: "/", + }, + }; +}