robots.ts 167 B

12345678910
  1. import { type MetadataRoute } from "next";
  2. export default function robots(): MetadataRoute.Robots {
  3. return {
  4. rules: {
  5. userAgent: "*",
  6. allow: "/",
  7. },
  8. };
  9. }