diff --git a/src/app/robots.ts b/src/app/robots.ts index 1e4b5e1..94535f0 100644 --- a/src/app/robots.ts +++ b/src/app/robots.ts @@ -1,10 +1,11 @@ -import type { MetadataRoute } from "next"; +import { MetadataRoute } from 'next' export default function robots(): MetadataRoute.Robots { return { rules: { - userAgent: "*", - allow: "/", + userAgent: '*', + allow: '/', + disallow: ['/dashboard/*', '/auth/callback'], }, - }; + } }