mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-09 17:01:00 +00:00
daabb65f30
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
224 B
TypeScript
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",
|
|
};
|
|
}
|