mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
export const dynamic = "force-static";
|
|
|
|
import type { MetadataRoute } from "next";
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: "*",
|
|
allow: "/",
|
|
disallow: "/private/",
|
|
},
|
|
sitemap: "https://better-t-stack.dev/sitemap.xml",
|
|
};
|
|
}
|