Files
highland_games_website/app/robots.ts
T
2026-06-22 23:03:02 +02:00

17 lines
313 B
TypeScript

import type { MetadataRoute } from "next";
const SITE_URL = "https://highlandgamesstudio.com";
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
allow: "/",
},
],
sitemap: `${SITE_URL}/sitemap.xml`,
host: SITE_URL,
};
}