diff --git a/src/app/robots.ts b/src/app/robots.ts new file mode 100644 index 0000000..20214ef --- /dev/null +++ b/src/app/robots.ts @@ -0,0 +1,14 @@ +import { MetadataRoute } from "next"; + +export default function robots(): MetadataRoute.Robots { + return { + rules: [ + { + userAgent: "*", + allow: "/", + }, + ], + sitemap: "https://www.wilddragon.net/sitemap.xml", + host: "https://www.wilddragon.net", + }; +}