Spaces:
Running
Running
| import type { MetadataRoute } from "next"; | |
| const SITE = "https://build.matrixhub.io"; | |
| export default function robots(): MetadataRoute.Robots { | |
| return { | |
| rules: { userAgent: "*", allow: "/" }, | |
| sitemap: `${SITE}/sitemap.xml`, | |
| host: SITE, | |
| }; | |
| } | |