Files
better-auth/docs/app/robots.ts
Bereket Engida 461526d89d chore: lint
2024-09-27 15:55:00 +03:00

11 lines
162 B
TypeScript

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