Files
oh-my-opencode/packages/web/app/robots.ts
T

12 lines
221 B
TypeScript
Raw Normal View History

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