8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: { userAgent: "*", allow: "/" },
|
|
sitemap: "https://cmux.com/sitemap.xml",
|
|
};
|
|
}
|