17 lines
313 B
TypeScript
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,
|
|
};
|
|
}
|