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