2026-05-08 13:35:00 +09:00
|
|
|
import type { MetadataRoute } from "next"
|
|
|
|
|
|
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
|
|
|
return {
|
|
|
|
|
rules: {
|
|
|
|
|
userAgent: "*",
|
|
|
|
|
allow: "/",
|
|
|
|
|
},
|
2026-05-25 17:14:39 +09:00
|
|
|
sitemap: "https://omo.dev/sitemap.xml",
|
2026-05-08 13:35:00 +09:00
|
|
|
}
|
|
|
|
|
}
|