← back to Nineoh Guide

apps/web/app/robots.ts

10 lines

import type { MetadataRoute } from "next";
import { SITE_URL } from "@nineoh/core";

export default function robots(): MetadataRoute.Robots {
  return {
    rules: { userAgent: "*", allow: "/" },
    sitemap: `${SITE_URL}/sitemap.xml`,
  };
}