12 lines
No EOL
255 B
TypeScript
12 lines
No EOL
255 B
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: '/private/',
|
|
},
|
|
sitemap: 'https://presenton.ai/sitemap.xml',
|
|
}
|
|
} |