Files
fire/src/app/robots.ts
2025-05-07 14:37:34 +02:00

12 lines
233 B
TypeScript

import type { MetadataRoute } from "next";
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: "https://investingfire.com/sitemap.xml",
};
}