mirror of
https://github.com/vernu/textbee.git
synced 2026-02-19 23:26:14 -05:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import { MetadataRoute } from 'next'
|
|
|
|
export default function robots(): MetadataRoute.Robots {
|
|
return {
|
|
rules: {
|
|
userAgent: '*',
|
|
allow: '/',
|
|
disallow: ['/dashboard/', '/api/'],
|
|
},
|
|
sitemap: `${process.env.NEXT_PUBLIC_SITE_URL}/sitemap.xml`,
|
|
}
|
|
}
|