Files
ares/web/app/robots.ts
T
2026-06-11 16:30:05 +07:00

9 lines
224 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: { userAgent: "*", allow: "/" },
sitemap: "https://ares-six-peach.vercel.app/sitemap.xml",
};
}