Skip to content

Commit 5ed6b0f

Browse files
committed
feat: Add robots.txt for SEO
1 parent cc2c319 commit 5ed6b0f

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

app/robots.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { MetadataRoute } from "next"
2+
3+
export default function robots(): MetadataRoute.Robots {
4+
return {
5+
rules: {
6+
userAgent: "*",
7+
allow: "/",
8+
},
9+
sitemap: "https://openscan-explorer.github.io/docs/sitemap.xml",
10+
}
11+
}

0 commit comments

Comments
 (0)