Files
MODSetter-SurfSense/surfsense_web/app/robots.ts
T
DESKTOP-RTLN3BA\$punk 7ea840dbb2 feat: enhance SurfSense with new skills, blog section, and improve SEO metadata
- Added multiple new skills to skills-lock.json from the repository `aaron-he-zhu/seo-geo-claude-skills`.
- Introduced `fuzzy-search` dependency in package.json for improved search functionality.
- Updated pnpm-lock.yaml to include the new `fuzzy-search` package.
- Enhanced SEO metadata across various pages, including canonical links and descriptions for better search visibility.
- Improved layout and structure of several components, including the homepage and changelog, to enhance user experience.
2026-04-11 23:38:12 -07:00

23 lines
375 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: [
{
userAgent: "*",
allow: "/",
disallow: [
"/dashboard/",
"/desktop/",
"/auth/",
"/api/",
"/invite/",
"/public/",
"/verify-token/",
],
},
],
sitemap: "https://surfsense.com/sitemap.xml",
};
}