Files
ppc_amnet/aimenet-web/app/robots.ts
T
2024-08-08 19:40:56 +01:00

10 lines
196 B
TypeScript

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