Files
oh-my-opencode/packages/web/app/robots.ts
2026-05-18 16:44:02 +09:00

12 lines
231 B
TypeScript

import type { MetadataRoute } from "next"
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: "https://ohmyopenagent.com/sitemap.xml",
}
}