mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import type { MetadataRoute } from "next"
|
|
import { SEO } from "@/lib/seo"
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
},
|
|
sitemap: `${SEO.url}/sitemap.xml`,
|
|
host: SEO.url,
|
|
}
|
|
}
|