15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
import type { MetadataRoute } from "next"
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: [
|
|
{
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: ["/admin", "/api"],
|
|
},
|
|
],
|
|
sitemap: "https://deckyvault.xyz/sitemap.xml",
|
|
host: "https://deckyvault.xyz",
|
|
}
|
|
} |