Files
next-ai-draw-io/app/robots.ts
T

13 lines
296 B
TypeScript
Raw Normal View History

import type { MetadataRoute } from "next"
2025-11-16 08:36:13 +09:00
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
disallow: "/api/",
2025-11-16 08:36:13 +09:00
},
sitemap: "https://next-ai-drawio.jiang.jp/sitemap.xml",
2025-11-16 08:36:13 +09:00
}
}