SPB Git forge

spb/websensor

Public
33commits 1branches 0releases
3.4 MBsize
maindefault branch
10 days agolast push
TypeScript 55.4% Python 43.2% SQL 1.2%
334 B · 11 lines typescript
Raw Blame History
1import type { MetadataRoute } from "next";2import { SITE_URL } from "@/lib/api";34export default function robots(): MetadataRoute.Robots {5  return {6    rules: [{ userAgent: "*", allow: "/", disallow: ["/api/v1/watchlists", "/api/v1/alerts", "/compare", "/url"] }],7    sitemap: `${SITE_URL}/sitemap.xml`,8    host: SITE_URL,9  };10}11