mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-07-30 20:17:45 +00:00
dbba172ed3
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: { userAgent: "*", allow: "/" },
|
|
sitemap: "https://ares.romys.my.id/sitemap.xml",
|
|
};
|
|
}
|