test: switch to cloudflare

This commit is contained in:
Aman Varshney
2025-08-04 01:44:06 +05:30
parent f56a3b7338
commit 37e4e9ae43
18 changed files with 1881 additions and 350 deletions

14
apps/web/robots.ts Normal file
View File

@@ -0,0 +1,14 @@
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",
};
}