15 lines
278 B
TypeScript
15 lines
278 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
const BASE_URL = "https://nearle.in";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
},
|
|
sitemap: `${BASE_URL}/sitemap.xml`,
|
|
host: BASE_URL,
|
|
};
|
|
}
|