SurfSense/surfsense_web/app/robots.ts
DESKTOP-RTLN3BA\$punk 219a5977b7 fix: update URLs to use the "www" subdomain across the application
This commit modifies various metadata and canonical URLs in the SurfSense application to ensure consistency by using "https://www.surfsense.com" instead of "https://surfsense.com". Changes were made in layout files, blog posts, and SEO components to reflect this update.
2026-05-15 12:35:15 -07:00

22 lines
379 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://www.surfsense.com/sitemap.xml",
};
}