We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5580f53 commit 0f3d904Copy full SHA for 0f3d904
1 file changed
apps/dashboard/app/robots.ts
@@ -0,0 +1,11 @@
1
+import type { MetadataRoute } from "next";
2
+
3
+export default function robots(): MetadataRoute.Robots {
4
+ return {
5
+ rules: {
6
+ userAgent: "*",
7
+ allow: "/status/",
8
+ disallow: ["/", "/.well-known/", "/_next/"],
9
+ },
10
+ };
11
+}
0 commit comments