mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
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.
22 lines
379 B
TypeScript
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",
|
|
};
|
|
}
|