mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
23 lines
375 B
TypeScript
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",
|
||
|
|
};
|
||
|
|
}
|