apps/web/app/robots.ts
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`,
};
}